|
From: Ollie R. <ol...@ru...> - 2002-06-24 01:38:02
|
Hi,
After a pretty hectic end of the week and weekend, I just got back
to doing a little work on the DocBook writer I've been working on.
I'm hoping to check-in a somewhat functional version into the
sandbox shortly, but when I went to use the new "choice" type
from "optik.py" I found a little bug.
Below is a patch for this.
Related to this, I didn't see any guidelines in the project policies
regarding 'new developer' procedures. Without the go ahead, I didn't
think I should just commit changes to the main repository, but
sending this a patch seems likes it makes more work for someone
else, considering how little it is.
-Ollie
Index: optik.py
===================================================================
RCS file: /cvsroot/docutils/docutils/docutils/optik.py,v
retrieving revision 1.4
diff -w -u -u -r1.4 optik.py
--- optik.py 20 Jun 2002 03:56:59 -0000 1.4
+++ optik.py 24 Jun 2002 01:24:31 -0000
@@ -54,7 +54,7 @@
import sys
import os
import types
-from types import TupleType, DictType
+from types import TupleType, DictType, ListType
from distutils.fancy_getopt import wrap_text
|