diff options
Diffstat (limited to 'kcc-c2e.py')
-rwxr-xr-x | kcc-c2e.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kcc-c2e.py b/kcc-c2e.py index 01ab86e..bbc22b2 100755 --- a/kcc-c2e.py +++ b/kcc-c2e.py @@ -40,10 +40,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 |