summaryrefslogtreecommitdiff
path: root/libre/mcomix/486f02.patch
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2020-04-11 10:24:55 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2020-04-11 10:24:55 -0500
commitb6cfecdd5f0ebb64eff423f33227a96d78c77acf (patch)
treeae9f51f5344b78c765e569fda25459287b354402 /libre/mcomix/486f02.patch
parent29ba4ed120f011a6fa04976ffba487126b4aa661 (diff)
downloadabslibre-b6cfecdd5f0ebb64eff423f33227a96d78c77acf.tar.gz
abslibre-b6cfecdd5f0ebb64eff423f33227a96d78c77acf.tar.bz2
abslibre-b6cfecdd5f0ebb64eff423f33227a96d78c77acf.zip
mcomix-1.3.0.dev0-2.parabola1: updating version
Diffstat (limited to 'libre/mcomix/486f02.patch')
-rw-r--r--libre/mcomix/486f02.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/libre/mcomix/486f02.patch b/libre/mcomix/486f02.patch
deleted file mode 100644
index 055884047..000000000
--- a/libre/mcomix/486f02.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/mcomix/run.py
-+++ b/mcomix/run.py
-@@ -203,7 +203,11 @@
-
- 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=' ')