diff options
author | Stefano <l.stickell@yahoo.it> | 2014-04-18 16:21:42 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-18 16:21:42 +0200 |
commit | 1db169b2a7f1df66777a1045b17fc948b1b45c42 (patch) | |
tree | e3df2bbef73737a21417b536ef15a4ea129bba05 /module/plugins/hoster/FileserveCom.py | |
parent | Using in instead of has_key (diff) | |
download | pyload-1db169b2a7f1df66777a1045b17fc948b1b45c42.tar.xz |
Fixed some PEP8 violations
Diffstat (limited to 'module/plugins/hoster/FileserveCom.py')
-rw-r--r-- | module/plugins/hoster/FileserveCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/FileserveCom.py b/module/plugins/hoster/FileserveCom.py index c28bae456..4c678c1b1 100644 --- a/module/plugins/hoster/FileserveCom.py +++ b/module/plugins/hoster/FileserveCom.py @@ -91,7 +91,7 @@ class FileserveCom(Hoster): if "fail" in action: if action["fail"] == "timeLimit": - self.html = self.load(self.url,post={"checkDownload": "showError", "errorType": "timeLimit"}, + self.html = self.load(self.url, post={"checkDownload": "showError", "errorType": "timeLimit"}, decode=True) self.doLongWait(re.search(self.LONG_WAIT_PATTERN, self.html)) @@ -134,7 +134,7 @@ class FileserveCom(Hoster): self.doLongWait(self.lastCheck) elif check == "limit": #download limited reached for today (not a exact time known) - self.setWait(3 * 60 * 60, True) # wait 3 hours #TO-DO: resolve waittime using UnrestrictLi's secondsToMidnight + self.setWait(3 * 60 * 60, True) # wait 3 hours #TO-DO: resolve waittime using UnrestrictLi's secondsToMidnight self.wait() self.retry() |