diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-03 09:25:46 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-03 09:25:46 +0200 |
commit | 7b3e630f60ab2a917106cc6e09b92123001a0083 (patch) | |
tree | 37572a37e6333f72a378788ace7337362c6cc3e7 /module/plugins | |
parent | [OboomCom] Revert captcha changes (diff) | |
download | pyload-7b3e630f60ab2a917106cc6e09b92123001a0083.tar.xz |
[CaptchaService] Fix code indentation typo
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/internal/CaptchaService.py | 4 |
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) |