Fix import of Pillow in modules

This commit is contained in:
Florent 2013-06-06 13:50:43 +02:00
commit 1310939fe0
3 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ import hashlib
import sys
try:
import Image
from PIL import Image
except ImportError:
raise ImportError('Please install python-imaging')

View file

@ -21,7 +21,7 @@
import time
try:
import Image
from PIL import Image
except ImportError:
raise ImportError('Please install python-imaging')

View file

@ -21,7 +21,7 @@
import hashlib
try:
import Image
from PIL import Image
except ImportError:
raise ImportError('Please install python-imaging')