Merge pull request #98 from cclauss/patch-1

Old style exception won't work in Python 3
This commit is contained in:
derv
2018-06-09 19:37:00 -07:00
committed by GitHub

View File

@@ -23,7 +23,7 @@ class TestHandshake(unittest.TestCase):
hs = Handshake(hs_file, bssid='A4:2B:8C:16:6B:3A')
try:
hs.analyze()
except Exception, e:
except Exception:
fail()
def testHandshakeTshark(self):