summaryrefslogtreecommitdiff
path: root/graphics/py-mcomix/files/patch-mcomix_run.py
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/py-mcomix/files/patch-mcomix_run.py')
-rw-r--r--graphics/py-mcomix/files/patch-mcomix_run.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/graphics/py-mcomix/files/patch-mcomix_run.py b/graphics/py-mcomix/files/patch-mcomix_run.py
deleted file mode 100644
index dfa0e933f04c..000000000000
--- a/graphics/py-mcomix/files/patch-mcomix_run.py
+++ /dev/null
@@ -1,15 +0,0 @@
---- mcomix/run.py.orig 2016-02-12 18:52:12 UTC
-+++ mcomix/run.py
-@@ -203,7 +203,11 @@ def run():
-
- try:
- import PIL.Image
-- assert PIL.Image.VERSION >= '1.1.5'
-+ try:
-+ assert PIL.Image.VERSION >= '1.1.5'
-+ except AttributeError:
-+ # Field VERSION deprecated in Pillow 5.2.0 and dropped in 6.0.0
-+ assert PIL.__version__ >= '5.2.0'
-
- except AssertionError:
- log.error( _("You don't have the required version of the Python Imaging"), end=' ')