Notices where this attachment appears
-
Debian sid のmcomix が動かなくなってたやつバグレポとパッチ上がってた
"#931645 - mcomix: Fails to start with python-pil (>= 6.0.0) - Debian Bug report logs" https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=931645
なるほどとりあえず /usr/lib/python2.7/dist-packages/mcomix/run.py の assert PIL.Image.VERSION をコメントアウトしただけで動いたので降りてくるまでこれで
@@ -203,7 +203,7 @@
try:
import PIL.Image
-# assert PIL.Image.VERSION >= '1.1.5'
+ assert PIL.Image.VERSION >= '1.1.5'
except AssertionError:
log.error( _("You don't have the required version of the Python Imaging"), end=' ')