diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-04-11 12:18:22 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-11 12:18:22 +0200 |
commit | d68938a9a7fbfb079b0a6de469de766b5892d769 (patch) | |
tree | 443b21cc277126fa44486bc940f8aa521f92564d /module/plugins/captcha/ShareonlineBiz.py | |
parent | Use wait to set time in SimpleHoster plugins (diff) | |
download | pyload-d68938a9a7fbfb079b0a6de469de766b5892d769.tar.xz |
Remove bad whitespaces
Merges vuolter/pyload@e4b2562
Diffstat (limited to 'module/plugins/captcha/ShareonlineBiz.py')
-rw-r--r-- | module/plugins/captcha/ShareonlineBiz.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/captcha/ShareonlineBiz.py b/module/plugins/captcha/ShareonlineBiz.py index b07fb9b0f..a759f80ce 100644 --- a/module/plugins/captcha/ShareonlineBiz.py +++ b/module/plugins/captcha/ShareonlineBiz.py @@ -21,10 +21,10 @@ from captcha import OCR class ShareonlineBiz(OCR): __name__ = "ShareonlineBiz" - + def __init__(self): OCR.__init__(self) - + def get_captcha(self, image): self.load_image(image) self.to_greyscale() @@ -35,7 +35,7 @@ class ShareonlineBiz(OCR): #self.derotate_by_average() letters = self.split_captcha_letters() - + final = "" for letter in letters: self.image = letter |