Page MenuHomePhorge

D135.1775391082.diff
No OneTemporary

Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None

D135.1775391082.diff

diff --git a/cyruslib.py b/cyruslib.py
--- a/cyruslib.py
+++ b/cyruslib.py
@@ -382,7 +382,7 @@
if ok(res):
return res, msg
except Exception, info:
- error = info.args[0].split(':').pop().strip()
+ error = str(info).split(':').pop().strip()
if error.upper().startswith('BAD'):
error = error.split('BAD', 1).pop().strip()
error = unquote(error[1:-1], '\'')
@@ -411,7 +411,7 @@
res, msg = self.m.login(username, password)
admin = self.m.isadmin()
except Exception, info:
- error = info.args[0].split(':').pop().strip()
+ error = str(info).split(':').pop().strip()
self.__doexception("LOGIN", error)
if admin:
@@ -443,7 +443,7 @@
try:
res, msg = self.m.logout()
except Exception, info:
- error = info.args[0].split(':').pop().strip()
+ error = str(info).split(':').pop().strip()
self.__doexception("LOGOUT", error)
self.AUTH = False
self.ADMIN = None

File Metadata

Mime Type
text/plain
Expires
Sun, Apr 5, 12:11 PM (4 d, 3 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18833420
Default Alt Text
D135.1775391082.diff (1 KB)

Event Timeline