stylesheet

2009-11-09

etchでpython-unoパッケージの削除時にエラー

debian etch なサーバーで python-uno パッケージを削除しようとしたところ、正常に削除できなかった。詳細を見てみると /usr/bin/pycentral で例外が発生。697行目 remove_byte_codeメソッドがないとな。原因は単純でselfの付け忘れ。頭にselfと付けたらさっくり動いた。

[/usr/bin/pycentral:697行目]
#default_runtime.remove_byte_code(self.private_files)
self.default_runtime.remove_byte_code(self.private_files)

[バージョンとか]
python-uno: 2.0.4.dfsg.2-7etch7
python-central: 0.5.12

はやく移行しないと…。