diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-04-11 12:17:03 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-11 12:17:03 +0200 |
commit | 381c4d02a900fac224ccaa802db080cf577ed2fb (patch) | |
tree | 7ae70daa2def01e05193d2bbef3a851aa33eeae1 /module/plugins/hoster/Keep2shareCC.py | |
parent | Fix EOF (diff) | |
download | pyload-381c4d02a900fac224ccaa802db080cf577ed2fb.tar.xz |
Fix retry time formats
Merges vuolter/pyload@498b9e3
Diffstat (limited to 'module/plugins/hoster/Keep2shareCC.py')
-rw-r--r-- | module/plugins/hoster/Keep2shareCC.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/Keep2shareCC.py b/module/plugins/hoster/Keep2shareCC.py index cb5f4e9a9..8de16e349 100644 --- a/module/plugins/hoster/Keep2shareCC.py +++ b/module/plugins/hoster/Keep2shareCC.py @@ -74,7 +74,7 @@ class Keep2shareCC(SimpleHoster): if m: # if someone is already downloading on our line, wait 30min and retry self.logDebug('Already downloading, waiting for 30 minutes') - self.wait(1800, reconnect=True) + self.wait(30 * 60, reconnect=True) self.retry() m = re.search(self.DIRECT_LINK_PATTERN, self.html) |