Fix bug when interrupting/killing a process, caused console to stop displaying

This commit is contained in:
derv82
2015-05-27 20:45:14 -07:00
parent 1f2ebc9914
commit af7f30b6d0
2 changed files with 22 additions and 16 deletions

View File

@@ -53,7 +53,7 @@ class Airodump(object):
'''
# Kill the process
self.pid.interrupt()
self.pid.kill()
# Delete temp files
self.delete_airodump_temp_files()