summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hoster/CatShareNet.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/hoster/CatShareNet.py')
-rw-r--r--pyload/plugins/hoster/CatShareNet.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/hoster/CatShareNet.py b/pyload/plugins/hoster/CatShareNet.py
index 63a550bd4..146b639de 100644
--- a/pyload/plugins/hoster/CatShareNet.py
+++ b/pyload/plugins/hoster/CatShareNet.py
@@ -50,10 +50,10 @@ class CatShareNet(SimpleHoster):
recaptcha = ReCaptcha(self)
- challenge, code = recaptcha.challenge()
+ challenge, response = recaptcha.challenge()
self.html = self.load(self.pyfile.url,
post={'recaptcha_challenge_field': challenge,
- 'recaptcha_response_field': code})
+ 'recaptcha_response_field' : response})
m = re.search(self.LINK_PATTERN, self.html)
if m is None: