diff -Nru comix-4.0.16/ChangeLog comix-4.0.17/ChangeLog --- comix-4.0.16/ChangeLog 2018-12-21 17:22:07.000000000 +0000 +++ comix-4.0.17/ChangeLog 2019-11-18 20:25:32.000000000 +0000 @@ -1,3 +1,7 @@ +Comix 4.0.17 + + - Fix suport of Pillow >= 6.0 + Comix 4.0.16 - Fix extended suport of images by Pillow diff -Nru comix-4.0.16/debian/changelog comix-4.0.17/debian/changelog --- comix-4.0.16/debian/changelog 2018-12-21 17:30:13.000000000 +0000 +++ comix-4.0.17/debian/changelog 2019-11-18 20:28:07.000000000 +0000 @@ -1,3 +1,10 @@ +comix (4.0.17-1sergey5~trusty1) trusty; urgency=medium + + * New version: + - Fix work with Pillow >= 6.0 + + -- Sergey Dryabzhinsky Mon, 18 Nov 2019 23:27:28 +0300 + comix (4.0.16-1sergey5~trusty1) trusty; urgency=medium * New version: diff -Nru comix-4.0.16/src/comix.py comix-4.0.17/src/comix.py --- comix-4.0.16/src/comix.py 2015-11-22 10:35:24.000000000 +0000 +++ comix-4.0.17/src/comix.py 2019-11-18 20:26:06.000000000 +0000 @@ -73,6 +73,9 @@ print 'Installed PIL version is: %s' % Image.VERSION print 'Required PIL version is: 1.1.5 or higher' sys.exit(1) +except AttributeError: + # New Pillow >= 6 + pass import constants import deprecated diff -Nru comix-4.0.16/src/constants.py comix-4.0.17/src/constants.py --- comix-4.0.16/src/constants.py 2018-12-21 17:22:07.000000000 +0000 +++ comix-4.0.17/src/constants.py 2019-11-18 20:26:12.000000000 +0000 @@ -4,7 +4,7 @@ import portability -VERSION = '4.0.16' +VERSION = '4.0.17' HOME_DIR = portability.get_home_directory() CONFIG_DIR = portability.get_config_directory() DATA_DIR = portability.get_data_directory()