[Epydoc-commits] SF.net SVN: epydoc: [1155] trunk/epydoc/src/epydoc/markup/__init__.py
Brought to you by:
edloper
From: <ed...@us...> - 2006-04-04 02:23:07
|
Revision: 1155 Author: edloper Date: 2006-04-03 19:23:00 -0700 (Mon, 03 Apr 2006) ViewCVS: http://svn.sourceforge.net/epydoc/?rev=1155&view=rev Log Message: ----------- - Fixed bug in ConcatenatedDocstring that was causing it to return None for to_latex and to_plaintext Modified Paths: -------------- trunk/epydoc/src/epydoc/markup/__init__.py Modified: trunk/epydoc/src/epydoc/markup/__init__.py =================================================================== --- trunk/epydoc/src/epydoc/markup/__init__.py 2006-04-04 01:49:57 UTC (rev 1154) +++ trunk/epydoc/src/epydoc/markup/__init__.py 2006-04-04 02:23:00 UTC (rev 1155) @@ -313,11 +313,13 @@ latexstring = '' for doc in self._parsed_docstrings: latexstring += doc.to_latex(docstring_linker, **options) + return latexstring def to_plaintext(self, docstring_linker, **options): textstring = '' for doc in self._parsed_docstrings: textstring += doc.to_plaintext(docstring_linker, **options) + return textstring def index_terms(self): terms = [] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |