##// END OF EJS Templates
killdaemons: correct typo of _check() function caught by pyflakes
Yuya Nishihara -
r21194:47606950 stable
parent child Browse files
Show More
@@ -43,7 +43,7 b" if os.name =='nt':"
43 elif r == WAIT_TIMEOUT:
43 elif r == WAIT_TIMEOUT:
44 logfn('# Daemon process %d is stuck')
44 logfn('# Daemon process %d is stuck')
45 else:
45 else:
46 check(r) # any error
46 _check(r) # any error
47 except: #re-raises
47 except: #re-raises
48 ctypes.windll.kernel32.CloseHandle(handle) # no _check, keep error
48 ctypes.windll.kernel32.CloseHandle(handle) # no _check, keep error
49 raise
49 raise
General Comments 0
You need to be logged in to leave comments. Login now