diff options
author | 2015-10-08 03:08:17 +0200 | |
---|---|---|
committer | 2015-10-08 03:08:17 +0200 | |
commit | 035d8c554c9e24206f9dc6f76e17fbe9e4c3607f (patch) | |
tree | 3b173d98512f33233d4aeb2906493d3abeea2369 /module/plugins/hoster/CzshareCom.py | |
parent | Merge pull request #1957 from GammaC0de/patch-3 (diff) | |
download | pyload-035d8c554c9e24206f9dc6f76e17fbe9e4c3607f.tar.xz |
Fixpack (4)
Diffstat (limited to 'module/plugins/hoster/CzshareCom.py')
-rw-r--r-- | module/plugins/hoster/CzshareCom.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/CzshareCom.py b/module/plugins/hoster/CzshareCom.py index 75fcf39d8..d61bb310d 100644 --- a/module/plugins/hoster/CzshareCom.py +++ b/module/plugins/hoster/CzshareCom.py @@ -61,7 +61,7 @@ class CzshareCom(SimpleHoster): except Exception, e: #: let's continue and see what happens... - self.log_error(e) + self.log_error(e, trace=True) return True @@ -72,7 +72,7 @@ class CzshareCom(SimpleHoster): inputs = dict(re.findall(self.FORM_INPUT_PATTERN, form)) except Exception, e: - self.log_error(e) + self.log_error(e, trace=True) self.restart(premium=False) #: Download the file, destination is determined by pyLoad @@ -100,7 +100,7 @@ class CzshareCom(SimpleHoster): pyfile.size = int(inputs['size']) except Exception, e: - self.log_error(e) + self.log_error(e, trace=True) self.error(_("Form")) #: Get and decrypt captcha |