summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/ShareLinksBiz.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-09-29 21:48:26 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-09-29 21:48:26 +0200
commit9fdf1ed882fa981efd96179aaee23fb87e597c9b (patch)
treee22cbbf86e0f8fd897eaeb973002bb12b007f24c /module/plugins/crypter/ShareLinksBiz.py
parentUpdate internal plugins (diff)
downloadpyload-9fdf1ed882fa981efd96179aaee23fb87e597c9b.tar.xz
Update crypter plugins
Diffstat (limited to 'module/plugins/crypter/ShareLinksBiz.py')
-rw-r--r--module/plugins/crypter/ShareLinksBiz.py6
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()