Fix bug when airodump output for clients is unexpected/unparsable

This commit is contained in:
derv82
2017-05-18 00:14:49 -04:00
parent c4773c6d1a
commit c812edf630
3 changed files with 9 additions and 3 deletions

View File

@@ -195,7 +195,7 @@ class Airodump(object):
# The current row corresponds to a "Client" (computer)
try:
client = Client(row)
except IndexError:
except IndexError, ValueError:
# Skip if we can't parse the client row
continue