diff options
| author | Paweł Jastrzębski <[email protected]> | 2014-07-03 09:28:17 +0200 |
|---|---|---|
| committer | Paweł Jastrzębski <[email protected]> | 2014-07-03 18:16:57 +0200 |
| commit | 5efb5d6dbbd9b89d0de264bb5f9e1449fa80562b (patch) | |
| tree | 737f27ae2d33fe1aa824fd519b66e1132d76018c /kcc-c2e.py | |
| parent | Added Manga Cover Database support (diff) | |
| download | kcc-5efb5d6dbbd9b89d0de264bb5f9e1449fa80562b.tar.gz kcc-5efb5d6dbbd9b89d0de264bb5f9e1449fa80562b.tar.bz2 kcc-5efb5d6dbbd9b89d0de264bb5f9e1449fa80562b.zip | |
Updated Pillow (close #95)
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 e6c1f59..3721b33 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.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+') try: # noinspection PyUnresolvedReferences import slugify |