Update of /cvsroot/happydoc/HappyDoc/happydoclib/formatter
In directory usw-pr-cvs1:/tmp/cvs-serv31444
Modified Files:
xmlformatterbase.py
Log Message:
- textFormat param defaults to None in writeText method;
it is not used by formatters at now
Index: xmlformatterbase.py
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc/happydoclib/formatter/xmlformatterbase.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** xmlformatterbase.py 2002/02/03 21:50:11 1.2
--- xmlformatterbase.py 2002/02/07 01:19:11 1.3
***************
*** 205,209 ****
! def writeText(self, text, output, textFormat, quote=1):
"""Outputs text to XML file.
--- 205,209 ----
! def writeText(self, text, output, textFormat=None, quote=1):
"""Outputs text to XML file.
|