summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/UploadableCh.py
diff options
context:
space:
mode:
authorGravatar zapp-brannigan <fuerst.reinje@web.de> 2014-07-27 19:31:13 +0200
committerGravatar Reiner Seyferth <reiner@debian> 2014-08-31 13:53:04 +0200
commit43cdacabfee1a1b917f651d0b72aeae6af0b7e3b (patch)
treeb118059e8695c96b647d1f5656b07d092daf4b52 /module/plugins/hoster/UploadableCh.py
parentUpdate UploadableCh.py (diff)
downloadpyload-43cdacabfee1a1b917f651d0b72aeae6af0b7e3b.tar.xz
Update UploadableCh.py
Diffstat (limited to 'module/plugins/hoster/UploadableCh.py')
-rw-r--r--module/plugins/hoster/UploadableCh.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/module/plugins/hoster/UploadableCh.py b/module/plugins/hoster/UploadableCh.py
index 9e7396ee8..421cda41e 100644
--- a/module/plugins/hoster/UploadableCh.py
+++ b/module/plugins/hoster/UploadableCh.py
@@ -56,7 +56,7 @@ class UploadableCh(SimpleHoster):
# Submit the captcha solution
post_data = {"recaptcha_challenge_field": challenge, "recaptcha_response_field": code, "recaptcha_shortencode_field": file_id}
- c = self.load(base_url+"/checkReCaptcha.php", cookies=True, post=post_data, decode=True)
+ self.load(base_url+"/checkReCaptcha.php", cookies=True, post=post_data, decode=True)
time.sleep(3)
# Get ready for downloading
@@ -79,4 +79,3 @@ class UploadableCh(SimpleHoster):
self.retry()
getInfo = create_getInfo(UploadableCh)
-