Hello,
This bug was solved in latest upstream's version[1]. I attach the
patch that solves the problem.
1.
<http://bazaar.launchpad.net/~bzr/bzr/bzr.1.6/revision/3545.1.1?filter_file_id=rst2html.py-20060817120932-gn177u8v0008txhu-1&file_id=tools-20050707102144-fee2fd7fd6ddfc1c>
Thanks,
Olivier;
--
gpg --keyserver pgp.mit.edu --recv-keys 0x43CEA851
______________________________________________________
Olivier Tétard - toutoune25
site : http://toutoune25.miskin.fr/
Jabber : [EMAIL PROTECTED]
______________________________________________________
--- bzr-1.5/tools/rst2html.py 2008-05-17 00:21:24.000000000 +0200
+++ bzr-1.6rc1/tools/rst2html.py 2008-08-06 09:41:35.000000000 +0200
@@ -19,8 +19,7 @@
import docutils
from docutils.core import publish_cmdline, default_description
-
-if docutils.__version__ <= '0.4.1':
+if True: # this is still required in the distutils trunk as-at June 2008.
from docutils.parsers.rst.states import Body
# we have some option names that contain dot; which is not allowed by
# python-docutils 0.4-4 -- so monkeypatch in a better pattern