diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-08 10:01:24 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-08 10:01:24 +0200 |
commit | 3af8bfcf685f82de097ef6b110dffa77fd529eaf (patch) | |
tree | 4ececc92c874aaa3522b9c3fa1d45b995074c2e1 /module/plugins/accounts | |
parent | Fix https://github.com/pyload/pyload/issues/1459 (diff) | |
download | pyload-3af8bfcf685f82de097ef6b110dffa77fd529eaf.tar.xz |
[SimpleHoster] Improve logging and file checking
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/ShareonlineBiz.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/accounts/ShareonlineBiz.py b/module/plugins/accounts/ShareonlineBiz.py index b9509b466..9269cf2a1 100644 --- a/module/plugins/accounts/ShareonlineBiz.py +++ b/module/plugins/accounts/ShareonlineBiz.py @@ -64,5 +64,5 @@ class ShareonlineBiz(Account): html = self.api_response(user, req) err = re.search(r'\*\*(.+?)\*\*', html) if err: - self.logError(err.group(1)) + self.logError(err.group(1).strip()) self.wrongPassword() |