diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-05 17:06:22 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-05 17:06:22 +0200 |
commit | 2a5ff9ce8b025336cccdd7dde1260a7255efc683 (patch) | |
tree | 27f345bc1af3f71e2ff200fa3a0397fbffce85d6 /module/plugins/hooks/CaptchaBrotherhood.py | |
parent | Remove old Ev0InFetcher hook (diff) | |
download | pyload-2a5ff9ce8b025336cccdd7dde1260a7255efc683.tar.xz |
Fix pillow import header
Diffstat (limited to 'module/plugins/hooks/CaptchaBrotherhood.py')
-rw-r--r-- | module/plugins/hooks/CaptchaBrotherhood.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/module/plugins/hooks/CaptchaBrotherhood.py b/module/plugins/hooks/CaptchaBrotherhood.py index e4d24c366..217f0b89f 100644 --- a/module/plugins/hooks/CaptchaBrotherhood.py +++ b/module/plugins/hooks/CaptchaBrotherhood.py @@ -5,7 +5,11 @@ from __future__ import with_statement import StringIO import pycurl -from PIL import Image +try: + from PIL import Image +except ImportError: + import Image + from thread import start_new_thread from time import sleep from urllib import urlencode |