minor cleanup

This commit is contained in:
Benjamin Sergeant
2019-03-21 13:50:59 -07:00
parent 00ed1d2817
commit 2358b3ff26
3 changed files with 6 additions and 6 deletions

View File

@ -27,7 +27,7 @@ class Command(object):
thread.join(timeout)
if thread.is_alive():
print 'Command timeout, kill it: ' + self.cmd
print('Command timeout, kill it: ' + self.cmd)
self.process.terminate()
thread.join()
return False, 255