1
0
mirror of https://github.com/ciromattia/kcc synced 2026-05-16 04:21:42 +00:00

More user-friendly import errors

This commit is contained in:
Paweł Jastrzębski
2013-06-18 10:56:27 +02:00
parent 75bc7c51b5
commit fd493dba9a
2 changed files with 12 additions and 2 deletions

View File

@@ -20,7 +20,12 @@ __copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jas
__docformat__ = 'restructuredtext en'
import os
from PIL import Image, ImageOps, ImageStat, ImageChops
try:
# noinspection PyUnresolvedReferences
from PIL import Image, ImageOps, ImageStat, ImageChops
except ImportError:
print "ERROR: Pillow is not installed!"
exit(1)
class ImageFlags: