Skip to content
Snippets Groups Projects
Commit 1147563f authored by durin42's avatar durin42
Browse files

killdaemons: drop superfluous L suffix from constant

As far as I'm aware PEP 237[0] means this suffix is superfluous even
on Python 2.4, and we can just drop it, which makes this code happy on
Python 3.

0: http://legacy.python.org/dev/peps/pep-0237/
parent 1cd5bff4
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@
logfn('# Killing daemon process %d' % pid)
PROCESS_TERMINATE = 1
PROCESS_QUERY_INFORMATION = 0x400
SYNCHRONIZE = 0x00100000L
SYNCHRONIZE = 0x00100000
WAIT_OBJECT_0 = 0
WAIT_TIMEOUT = 258
handle = ctypes.windll.kernel32.OpenProcess(
......@@ -89,4 +89,3 @@
if __name__ == '__main__':
path, = sys.argv[1:]
killdaemons(path)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment