[Epydoc-commits] SF.net SVN: epydoc: [1475] trunk/epydoc/src/epydoc/docwriter/latex.py
Brought to you by:
edloper
|
From: <ed...@us...> - 2007-02-13 20:22:19
|
Revision: 1475
http://svn.sourceforge.net/epydoc/?rev=1475&view=rev
Author: edloper
Date: 2007-02-13 12:22:12 -0800 (Tue, 13 Feb 2007)
Log Message:
-----------
- Fixed bug caused by previous checkin
Modified Paths:
--------------
trunk/epydoc/src/epydoc/docwriter/latex.py
Modified: trunk/epydoc/src/epydoc/docwriter/latex.py
===================================================================
--- trunk/epydoc/src/epydoc/docwriter/latex.py 2007-02-13 19:53:08 UTC (rev 1474)
+++ trunk/epydoc/src/epydoc/docwriter/latex.py 2007-02-13 20:22:12 UTC (rev 1475)
@@ -815,7 +815,7 @@
out('\\raggedright ')
if has_descr:
out(self.docstring_to_latex(var_doc.descr, 10).strip())
- if has_type or has_repr: out('\n\n')
+ out('\n\n')
out('\\textbf{Value:} \n')
out(self._pprint_var_value(var_doc))
if has_type:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|