diff options
author | 2014-04-11 12:17:03 +0200 | |
---|---|---|
committer | 2014-04-21 17:20:11 +0200 | |
commit | b5bff211b15187ff01dacaacdc022dc917d48b81 (patch) | |
tree | 16bf760303ab72dd6b4319f526bb874b73b5e283 /pyload/plugins/hoster/Keep2shareCC.py | |
parent | Fix EOF (diff) | |
download | pyload-b5bff211b15187ff01dacaacdc022dc917d48b81.tar.xz |
Fix retry time formats
Merges vuolter/pyload@498b9e3
(cherry picked from commit 381c4d02a900fac224ccaa802db080cf577ed2fb)
Diffstat (limited to 'pyload/plugins/hoster/Keep2shareCC.py')
-rw-r--r-- | pyload/plugins/hoster/Keep2shareCC.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugins/hoster/Keep2shareCC.py b/pyload/plugins/hoster/Keep2shareCC.py index cb5f4e9a9..8de16e349 100644 --- a/pyload/plugins/hoster/Keep2shareCC.py +++ b/pyload/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) |