[Epydoc-commits] SF.net SVN: epydoc: [1449] trunk/epydoc/src/epydoc/docwriter/html_colorize. py
Brought to you by:
edloper
From: <ed...@us...> - 2007-02-11 03:18:28
|
Revision: 1449 http://svn.sourceforge.net/epydoc/?rev=1449&view=rev Author: edloper Date: 2007-02-10 19:18:26 -0800 (Sat, 10 Feb 2007) Log Message: ----------- - Fixed SF bug 1657057, caused by using <a /> instead of <a></a> 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-11 00:05:34 UTC (rev 1448) +++ trunk/epydoc/src/epydoc/docwriter/html_colorize.py 2007-02-11 03:18:26 UTC (rev 1449) @@ -709,7 +709,7 @@ def lineno_to_html(self): template = '%%%ds' % self.linenum_size n = template % self.lineno - return '<a name="L%s" /><tt class="py-lineno">%s</tt>' \ + return '<a name="L%s"></a><tt class="py-lineno">%s</tt>' \ % (self.lineno, n) def colorize(self): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |