diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-19 13:42:29 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-19 13:42:29 +0200 |
commit | 33e2b36605e41962a2e8eee304a7f3d29690ffa8 (patch) | |
tree | e4e5fb38b8882ffe868f4f1ca965659f42b92612 /module/plugins/captcha/LinksaveIn.py | |
parent | [OCR] Fix __init__ (diff) | |
download | pyload-33e2b36605e41962a2e8eee304a7f3d29690ffa8.tar.xz |
[OCR] Fix __init__ (2)
Diffstat (limited to 'module/plugins/captcha/LinksaveIn.py')
-rw-r--r-- | module/plugins/captcha/LinksaveIn.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/module/plugins/captcha/LinksaveIn.py b/module/plugins/captcha/LinksaveIn.py index f263f4588..23944369b 100644 --- a/module/plugins/captcha/LinksaveIn.py +++ b/module/plugins/captcha/LinksaveIn.py @@ -15,15 +15,14 @@ from module.plugins.internal.OCR import OCR class LinksaveIn(OCR): __name__ = "LinksaveIn" __type__ = "ocr" - __version__ = "0.13" + __version__ = "0.14" __description__ = """Linksave.in ocr plugin""" __license__ = "GPLv3" __authors__ = [("pyLoad Team", "admin@pyload.org")] - def __init__(self): - OCR.__init__(self) + def init(self): self.data_dir = os.path.dirname(os.path.abspath(__file__)) + os.sep + "LinksaveIn" + os.sep |