diff options
author | 2015-06-08 06:08:01 +0200 | |
---|---|---|
committer | 2015-06-08 06:08:01 +0200 | |
commit | 0e1ef9bc01579328e17e79416fa3c1c7b77adcc8 (patch) | |
tree | 7254ea66d7efee78ececda3ab3eeeb6548b22bca /module/plugins/internal/Captcha.py | |
parent | Move base plugins to internal folder (diff) | |
download | pyload-0e1ef9bc01579328e17e79416fa3c1c7b77adcc8.tar.xz |
Update everything
Diffstat (limited to 'module/plugins/internal/Captcha.py')
-rw-r--r-- | module/plugins/internal/Captcha.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Captcha.py b/module/plugins/internal/Captcha.py index b4af46493..e5a44d750 100644 --- a/module/plugins/internal/Captcha.py +++ b/module/plugins/internal/Captcha.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- -from module.plugins.Plugin import Base +from module.plugins.internal.Plugin import Base #@TODO: Extend (new) Plugin class; remove all `html` args class Captcha(Base): __name__ = "Captcha" __type__ = "captcha" - __version__ = "0.29" + __version__ = "0.30" __description__ = """Base captcha service plugin""" __license__ = "GPLv3" |