diff options
author | Stefano <l.stickell@yahoo.it> | 2014-05-19 15:11:48 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-05-19 15:11:48 +0200 |
commit | f66587f131ac6870eb489608d12a6312987161c6 (patch) | |
tree | efa472db1b4b9d7b9fec703cfd73a1ca88ca46a7 /module/plugins/hooks | |
parent | [ShareRapid] Updates (diff) | |
download | pyload-f66587f131ac6870eb489608d12a6312987161c6.tar.xz |
[CaptchaBrotherhood] Pillow support
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r-- | module/plugins/hooks/CaptchaBrotherhood.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/CaptchaBrotherhood.py b/module/plugins/hooks/CaptchaBrotherhood.py index c95456924..23d71ff5f 100644 --- a/module/plugins/hooks/CaptchaBrotherhood.py +++ b/module/plugins/hooks/CaptchaBrotherhood.py @@ -24,7 +24,7 @@ import pycurl import StringIO from urllib import urlencode from time import sleep -import Image +from PIL import Image from module.network.RequestFactory import getURL, getRequest from module.plugins.Hook import Hook @@ -46,7 +46,7 @@ class CaptchaBrotherhoodException(Exception): class CaptchaBrotherhood(Hook): __name__ = "CaptchaBrotherhood" - __version__ = "0.04" + __version__ = "0.05" __description__ = """Send captchas to CaptchaBrotherhood.com""" __config__ = [("activated", "bool", "Activated", False), ("username", "str", "Username", ""), |