diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-28 16:04:10 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-28 16:04:10 +0100 |
commit | 8b3589dd394d81177bf4680dddb5bdb9506b89ea (patch) | |
tree | f9e4b92955fe2577ef25e7bf07911bda3b5d7590 /module/plugins/hoster/BayfilesCom.py | |
parent | [SimpleHoster] Improve wait method (diff) | |
download | pyload-8b3589dd394d81177bf4680dddb5bdb9506b89ea.tar.xz |
Update plugins to last changes
Diffstat (limited to 'module/plugins/hoster/BayfilesCom.py')
-rw-r--r-- | module/plugins/hoster/BayfilesCom.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/module/plugins/hoster/BayfilesCom.py b/module/plugins/hoster/BayfilesCom.py index 48758ed88..c438511a9 100644 --- a/module/plugins/hoster/BayfilesCom.py +++ b/module/plugins/hoster/BayfilesCom.py @@ -33,8 +33,7 @@ class BayfilesCom(SimpleHoster): def handleFree(self): m = re.search(self.WAIT_PATTERN, self.html) if m: - self.wait(int(m.group(1)) * 60) - self.retry() + self.retry(wait_time=int(m.group(1)) * 60) # Get download token m = re.search(self.VARS_PATTERN, self.html) |