diff options
Diffstat (limited to 'module/plugins/Account.py')
-rw-r--r-- | module/plugins/Account.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/Account.py b/module/plugins/Account.py index 15e75b965..291ebf1f5 100644 --- a/module/plugins/Account.py +++ b/module/plugins/Account.py @@ -147,8 +147,10 @@ class Account(Base): raise Exception("Wrong return format") except Exception, e: infos = {"error": str(e)} + print_exc() - if req: req.close() + if req: + req.close() self.logDebug("Account Info: %s" % infos) |