From 5efb5d6dbbd9b89d0de264bb5f9e1449fa80562b Mon Sep 17 00:00:00 2001 From: Paweł Jastrzębski Date: Thu, 3 Jul 2014 09:28:17 +0200 Subject: Updated Pillow (close #95) --- kcc-c2p.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kcc-c2p.py') diff --git a/kcc-c2p.py b/kcc-c2p.py index cc272ad..ca84077 100755 --- a/kcc-c2p.py +++ b/kcc-c2p.py @@ -33,10 +33,10 @@ missing = [] try: # noinspection PyUnresolvedReferences import PIL - if tuple(map(int, ('2.3.0'.split(".")))) > tuple(map(int, (PIL.PILLOW_VERSION.split(".")))): - missing.append('Pillow 2.3.0+') + if tuple(map(int, ('2.5.0'.split(".")))) > tuple(map(int, (PIL.PILLOW_VERSION.split(".")))): + missing.append('Pillow 2.5.0+') except ImportError: - missing.append('Pillow 2.3.0+') + missing.append('Pillow 2.5.0+') if len(missing) > 0: try: # noinspection PyUnresolvedReferences -- cgit 1.4.1