summaryrefslogtreecommitdiffstats
path: root/module/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins')
-rw-r--r--module/plugins/crypter/DlProtectCom.py2
-rw-r--r--module/plugins/internal/Captcha.py1
2 files changed, 3 insertions, 0 deletions
diff --git a/module/plugins/crypter/DlProtectCom.py b/module/plugins/crypter/DlProtectCom.py
index 7c30dbe9d..32dfd4612 100644
--- a/module/plugins/crypter/DlProtectCom.py
+++ b/module/plugins/crypter/DlProtectCom.py
@@ -59,6 +59,8 @@ class DlProtectCom(SimpleCrypter):
captcha_code = self.captcha.decrypt("http://www.dl-protect.com/captcha.php?key=" + m.group(1), input_type="gif")
self.log_debug("Captcha code: %s" % captcha_code)
post_req['secure'] = captcha_code
+ else:
+ self.log_debug("Captcha code requested but captcha not found")
self.data = self.load(self.pyfile.url, post=post_req)
diff --git a/module/plugins/internal/Captcha.py b/module/plugins/internal/Captcha.py
index 333602e29..d30271dd4 100644
--- a/module/plugins/internal/Captcha.py
+++ b/module/plugins/internal/Captcha.py
@@ -38,6 +38,7 @@ class Captcha(Plugin):
"""
Extend to build your custom anti-captcha ocr
"""
+ self.log_debug("This function does nothing")
pass