[Zope-Checkins] SVN: Zope/trunk/lib/python/docutils/__init__.py reST support has been broken due to a failing import of "roman.py" from

Andreas Jung andreas at andreas-jung.com
Sat Jun 19 02:38:06 EDT 2004


Log message for revision 25915:
reST support has been broken due to a failing import of "roman.py" from
other docutils code



-=-
Modified: Zope/trunk/lib/python/docutils/__init__.py
===================================================================
--- Zope/trunk/lib/python/docutils/__init__.py	2004-06-18 21:04:55 UTC (rev 25914)
+++ Zope/trunk/lib/python/docutils/__init__.py	2004-06-19 06:36:47 UTC (rev 25915)
@@ -1,7 +1,7 @@
 # Author: David Goodger
 # Contact: goodger at users.sourceforge.net
-# Revision: $Revision: 1.2.10.3.8.1 $
-# Date: $Date: 2004/05/12 19:57:37 $
+# Revision: $Revision: 1.2.10.5 $
+# Date: $Date: 2004/06/19 06:33:31 $
 # Copyright: This module has been placed in the public domain.
 
 """
@@ -161,3 +161,8 @@
         a certain input context or output format.
         """
         return format in self.supported
+
+import sys, os
+home = os.path.dirname(__file__)
+if not home in sys.path:
+    sys.path.append(home) 




More information about the Zope-Checkins mailing list