Skip to content
This repository was archived by the owner on Jan 7, 2019. It is now read-only.

Commit 62d7a78

Browse files
committed
Kill instead of terminate (issue #114)
1 parent 6590ddf commit 62d7a78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/generate_thumbs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def target():
322322
thread.join(timeout)
323323
if thread.is_alive():
324324
sys.stderr.write("Process taking too long -- terminating\n")
325-
self.process.terminate()
325+
self.process.kill()
326326
thread.join()
327327
# Process has been interrupted
328328
return False

0 commit comments

Comments
 (0)