diff options
| author | Paweł Jastrzębski <[email protected]> | 2015-01-02 09:27:54 +0100 |
|---|---|---|
| committer | Paweł Jastrzębski <[email protected]> | 2015-01-02 09:55:34 +0100 |
| commit | b629b45d461be473c3d1a38bd8e921ef493b80c5 (patch) | |
| tree | 55ffaa83b8782e618b1fd911a3fe85e471760551 /kcc-c2p.py | |
| parent | PyQT 5.4 update (diff) | |
| download | kcc-b629b45d461be473c3d1a38bd8e921ef493b80c5.tar.gz kcc-b629b45d461be473c3d1a38bd8e921ef493b80c5.tar.bz2 kcc-b629b45d461be473c3d1a38bd8e921ef493b80c5.zip | |
Pillow update
Diffstat (limited to 'kcc-c2p.py')
| -rwxr-xr-x | kcc-c2p.py | 6 |
1 files changed, 3 insertions, 3 deletions
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 |