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/ShareonlineBiz.py | |
parent | [OCR] Fix __init__ (diff) | |
download | pyload-33e2b36605e41962a2e8eee304a7f3d29690ffa8.tar.xz |
[OCR] Fix __init__ (2)
Diffstat (limited to 'module/plugins/captcha/ShareonlineBiz.py')
-rw-r--r-- | module/plugins/captcha/ShareonlineBiz.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/module/plugins/captcha/ShareonlineBiz.py b/module/plugins/captcha/ShareonlineBiz.py index 234f39a51..b96781f9b 100644 --- a/module/plugins/captcha/ShareonlineBiz.py +++ b/module/plugins/captcha/ShareonlineBiz.py @@ -6,17 +6,13 @@ from module.plugins.internal.OCR import OCR class ShareonlineBiz(OCR): __name__ = "ShareonlineBiz" __type__ = "ocr" - __version__ = "0.13" + __version__ = "0.14" __description__ = """Shareonline.biz ocr plugin""" __license__ = "GPLv3" __authors__ = [("RaNaN", "RaNaN@pyload.org")] - def __init__(self): - OCR.__init__(self) - - def get_captcha(self, image): self.load_image(image) self.to_greyscale() |