Patch for an Issue #990

This commit is contained in:
Miroslav Stampar 2014-12-04 13:36:41 +01:00
parent 9b32e69f26
commit 56965e3608

View File

@ -840,7 +840,7 @@ def dictionaryAttack(attack_dict):
try: try:
process.terminate() process.terminate()
process.join() process.join()
except OSError: except (OSError, AttributeError):
pass pass
finally: finally:
@ -934,7 +934,7 @@ def dictionaryAttack(attack_dict):
try: try:
process.terminate() process.terminate()
process.join() process.join()
except OSError: except (OSError, AttributeError):
pass pass
finally: finally: