1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2025-03-09 13:24:53 +00:00

FIX: Any error returned from trying to signon to 32P is now logged as a str

This commit is contained in:
evilhero 2015-06-12 03:17:59 -04:00
parent dca9ca59a1
commit 35f7a1de47

View file

@ -39,7 +39,7 @@ class info32p(object):
try:
s.get(self.url, verify=verify)
except requests.exceptions.SSLError as e:
logger.error(self.module + ' Unable to establish connection to 32P: ' + e)
logger.error(self.module + ' Unable to establish connection to 32P: ' + str(e))
# post to the login form
r = s.post(self.url, data=self.payload, verify=verify)