diff options
author | 2015-07-19 09:42:34 +0200 | |
---|---|---|
committer | 2015-07-19 09:42:34 +0200 | |
commit | 502517f37c7540b0bddb092e69386d9d6f08800c (patch) | |
tree | a90f2143063538f466b0283383a97067f7ea829d /module/plugins/internal/Captcha.py | |
parent | Improve fixurl method (diff) | |
download | pyload-502517f37c7540b0bddb092e69386d9d6f08800c.tar.xz |
Fix addons
Diffstat (limited to 'module/plugins/internal/Captcha.py')
-rw-r--r-- | module/plugins/internal/Captcha.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/module/plugins/internal/Captcha.py b/module/plugins/internal/Captcha.py index 68d5d3bb8..1309b0d6b 100644 --- a/module/plugins/internal/Captcha.py +++ b/module/plugins/internal/Captcha.py @@ -19,6 +19,15 @@ class Captcha(Plugin): self.plugin = plugin self.key = None #: Last key detected + self.init() + + + def init(self): + """ + Initialize additional data structures + """ + pass + #@TODO: Recheck in 0.4.10 def retrieve_key(self, html): |