summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/XFSPHoster.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-18 13:52:01 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-18 13:52:01 +0200
commitd0aa0ece5e506469f631b388f6c38eaaa63b63c9 (patch)
treead14725eb20174f58ec1ad7c6864419120c90369 /module/plugins/internal/XFSPHoster.py
parentConvert some crypters to use XFSPCrypter instead SimpleCrypter (diff)
downloadpyload-d0aa0ece5e506469f631b388f6c38eaaa63b63c9.tar.xz
Tiny code cosmetics
Diffstat (limited to 'module/plugins/internal/XFSPHoster.py')
-rw-r--r--module/plugins/internal/XFSPHoster.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/internal/XFSPHoster.py b/module/plugins/internal/XFSPHoster.py
index f1a250f85..abf71b033 100644
--- a/module/plugins/internal/XFSPHoster.py
+++ b/module/plugins/internal/XFSPHoster.py
@@ -330,7 +330,7 @@ class XFSPHoster(SimpleHoster):
captcha_key = recaptcha.detect_key()
if captcha_key:
- self.logDebug("RECAPTCHA KEY: %s" % captcha_key)
+ self.logDebug("ReCaptcha key: %s" % captcha_key)
inputs['recaptcha_challenge_field'], inputs['recaptcha_response_field'] = recaptcha.challenge(captcha_key)
return 3
@@ -341,6 +341,7 @@ class XFSPHoster(SimpleHoster):
captcha_key = solvemedia.detect_key()
if captcha_key:
+ self.logDebug("SolveMedia key: %s" % captcha_key)
inputs['adcopy_challenge'], inputs['adcopy_response'] = solvemedia.challenge(captcha_key)
return 4