[Epydoc-commits] SF.net SVN: epydoc: [1443] trunk/epydoc/src/epydoc/docwriter/html_colorize. py
Brought to you by:
edloper
From: <ed...@us...> - 2007-02-08 04:17:46
|
Revision: 1443 http://svn.sourceforge.net/epydoc/?rev=1443&view=rev Author: edloper Date: 2007-02-07 20:17:45 -0800 (Wed, 07 Feb 2007) Log Message: ----------- - Fixed a bug that generated an extra '</tt>' tag under some conditions. (an 'if' was replaced by an 'elif') Modified Paths: -------------- trunk/epydoc/src/epydoc/docwriter/html_colorize.py Modified: trunk/epydoc/src/epydoc/docwriter/html_colorize.py =================================================================== --- trunk/epydoc/src/epydoc/docwriter/html_colorize.py 2007-02-07 07:34:49 UTC (rev 1442) +++ trunk/epydoc/src/epydoc/docwriter/html_colorize.py 2007-02-08 04:17:45 UTC (rev 1443) @@ -1022,7 +1022,7 @@ raise if onclick: s += "</a></tt>" - if url: s += '</a>' + elif url: s += '</a>' elif css_class_html or tooltip_html: s += '</tt>' if self.ADD_DEF_BLOCKS: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |