Fix Pillow import in core

This commit is contained in:
Florent 2013-06-06 13:49:39 +02:00
commit 74f15059e9

View file

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