From b629b45d461be473c3d1a38bd8e921ef493b80c5 Mon Sep 17 00:00:00 2001 From: Paweł Jastrzębski Date: Fri, 2 Jan 2015 09:27:54 +0100 Subject: Pillow update --- 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 57acd33..7388f7f 100755 --- a/kcc-c2p.py +++ b/kcc-c2p.py @@ -33,10 +33,10 @@ missing = [] try: # noinspection PyUnresolvedReferences import PIL - if tuple(map(int, ('2.5.0'.split(".")))) > tuple(map(int, (PIL.PILLOW_VERSION.split(".")))): - missing.append('Pillow 2.5.0+') + if tuple(map(int, ('2.7.0'.split(".")))) > tuple(map(int, (PIL.PILLOW_VERSION.split(".")))): + missing.append('Pillow 2.7.0+') except ImportError: - missing.append('Pillow 2.5.0+') + missing.append('Pillow 2.7.0+') if len(missing) > 0: try: # noinspection PyUnresolvedReferences -- cgit 1.4.1