diff options
author | Stefano <l.stickell@yahoo.it> | 2013-05-20 15:32:01 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-05-20 15:32:01 +0200 |
commit | 257c3285867c6decbfe8cb8fde43e54708a542b9 (patch) | |
tree | 50357a1bf8db3f3b9c5616bf0c1d07bb3c49b870 /module/plugins/hoster/CloudzerNet.py | |
parent | Premium4Me: code cleanup (diff) | |
download | pyload-257c3285867c6decbfe8cb8fde43e54708a542b9.tar.xz |
CloudzerNet: reconnect support
http://forum.pyload.org/viewtopic.php?f=7&t=2106
Diffstat (limited to 'module/plugins/hoster/CloudzerNet.py')
-rw-r--r-- | module/plugins/hoster/CloudzerNet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/CloudzerNet.py b/module/plugins/hoster/CloudzerNet.py index 08a54d509..7608b193d 100644 --- a/module/plugins/hoster/CloudzerNet.py +++ b/module/plugins/hoster/CloudzerNet.py @@ -20,7 +20,7 @@ class CloudzerNet(SimpleHoster): __name__ = "CloudzerNet" __type__ = "hoster" __pattern__ = r"http://(www\.)?(cloudzer\.net/file/|clz\.to/(file/)?)(?P<ID>\w+).*" - __version__ = "0.01" + __version__ = "0.02" __description__ = """Cloudzer.net hoster plugin""" __author_name__ = ("gs", "z00nx") __author_mail__ = ("I-_-I-_-I@web.de", "z00nx0@gmail.com") @@ -56,7 +56,7 @@ class CloudzerNet(SimpleHoster): self.retry() elif "Sie haben die max" in response["err"] or "You have reached the max" in response["err"]: self.logDebug("Download limit reached, waiting an hour") - self.setWait(3600) + self.setWait(3600, True) self.wait() if "type" in response: if response["type"] == "download": |