summaryrefslogtreecommitdiffstats
path: root/module/plugins
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-03 09:25:46 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-03 09:25:46 +0200
commit7b3e630f60ab2a917106cc6e09b92123001a0083 (patch)
tree37572a37e6333f72a378788ace7337362c6cc3e7 /module/plugins
parent[OboomCom] Revert captcha changes (diff)
downloadpyload-7b3e630f60ab2a917106cc6e09b92123001a0083.tar.xz
[CaptchaService] Fix code indentation typo
Diffstat (limited to 'module/plugins')
-rw-r--r--module/plugins/internal/CaptchaService.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/CaptchaService.py b/module/plugins/internal/CaptchaService.py
index 72a8f8789..caac14d61 100644
--- a/module/plugins/internal/CaptchaService.py
+++ b/module/plugins/internal/CaptchaService.py
@@ -7,7 +7,7 @@ from random import random
class CaptchaService:
__name__ = "CaptchaService"
- __version__ = "0.07"
+ __version__ = "0.08"
__description__ = """Base captcha service plugin"""
__author_name__ = "pyLoad Team"
@@ -83,7 +83,7 @@ class ReCaptcha(CaptchaService):
return None
- def challenge(self, key=key):
+ def challenge(self, key=key):
if not key:
errmsg = "ReCaptcha key missing"
self.plugin.fail(errmsg)