Conversation
Notices
-
mcomix が起動しないと思ったら……まあsid だしたまにこういうこともある
$ mcomix
Traceback (most recent call last):
File "/usr/bin/mcomix", line 11, in <module>
load_entry_point('mcomix==1.2.1', 'console_scripts', 'mcomix')()
File "/usr/lib/python2.7/dist-packages/mcomix/run.py", line 206, in run
assert PIL.Image.VERSION >= '1.1.5'
AttributeError: 'module' object has no attribute 'VERSION'
-
今のとこバグレポには上がってないぽい?
数日経って治んないようなら上げるか
"Bugs in package mcomix -- Debian Bug report logs" https://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=mcomix
-
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=' ')