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.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kcc.py') diff --git a/kcc.py b/kcc.py index 0c963d3..f7fc51f 100755 --- a/kcc.py +++ b/kcc.py @@ -68,10 +68,10 @@ except ImportError: 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+') try: # noinspection PyUnresolvedReferences import slugify -- cgit 1.4.1