wpaspy: Fix exception handling in the test script

Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2013-03-16 21:46:51 +02:00
parent b2a12c4f93
commit 15cb4772d6

View file

@ -29,8 +29,7 @@ def wpas_connect():
try:
wpas = wpaspy.Ctrl(ctrl)
return wpas
except wpactrl.error, error:
print "Error: ", error
except Exception, e:
pass
return None