diff options
author | 2015-09-29 21:48:26 +0200 | |
---|---|---|
committer | 2015-09-29 21:48:26 +0200 | |
commit | 9fdf1ed882fa981efd96179aaee23fb87e597c9b (patch) | |
tree | e22cbbf86e0f8fd897eaeb973002bb12b007f24c /module/plugins/crypter/ShareLinksBiz.py | |
parent | Update internal plugins (diff) | |
download | pyload-9fdf1ed882fa981efd96179aaee23fb87e597c9b.tar.xz |
Update crypter plugins
Diffstat (limited to 'module/plugins/crypter/ShareLinksBiz.py')
-rw-r--r-- | module/plugins/crypter/ShareLinksBiz.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/crypter/ShareLinksBiz.py b/module/plugins/crypter/ShareLinksBiz.py index 2e9abff61..3316aea56 100644 --- a/module/plugins/crypter/ShareLinksBiz.py +++ b/module/plugins/crypter/ShareLinksBiz.py @@ -10,7 +10,7 @@ from module.plugins.internal.Crypter import Crypter class ShareLinksBiz(Crypter): __name__ = "ShareLinksBiz" __type__ = "crypter" - __version__ = "1.17" + __version__ = "1.18" __status__ = "testing" __pattern__ = r'http://(?:www\.)?(share-links|s2l)\.biz/(?P<ID>_?\w+)' @@ -131,7 +131,7 @@ class ShareLinksBiz(Crypter): href = self._resolve_coords(coords, captchaMap) if href is None: self.captcha.invalid() - self.retry(wait_time=5) + self.retry(delay=5) url = self.base_url + href self.html = self.load(url) @@ -161,7 +161,7 @@ class ShareLinksBiz(Crypter): if self.captcha: if "Your choice was wrong" in self.html: self.captcha.invalid() - self.retry(wait_time=5) + self.retry(delay=5) else: self.captcha.correct() |