[Epydoc-commits] SF.net SVN: epydoc: [1738] trunk/epydoc/src/epydoc/docwriter/latex_sty.py
Brought to you by:
edloper
From: <ed...@us...> - 2008-02-23 01:59:02
|
Revision: 1738 http://epydoc.svn.sourceforge.net/epydoc/?rev=1738&view=rev Author: edloper Date: 2008-02-22 17:59:00 -0800 (Fri, 22 Feb 2008) Log Message: ----------- - Fixed a bug in EpydocClassList Modified Paths: -------------- trunk/epydoc/src/epydoc/docwriter/latex_sty.py Modified: trunk/epydoc/src/epydoc/docwriter/latex_sty.py =================================================================== --- trunk/epydoc/src/epydoc/docwriter/latex_sty.py 2008-02-23 01:07:47 UTC (rev 1737) +++ trunk/epydoc/src/epydoc/docwriter/latex_sty.py 2008-02-23 01:59:00 UTC (rev 1738) @@ -252,7 +252,7 @@ % This list environment is used to list the classes that are defined % by a module. \newenvironment{EpydocClassList}{% - \newcommand{\EpydocGroup}[1]{\item[##1] \ + \renewcommand{\EpydocGroup}[1]{\item[##1] \ } \begin{itemize} \renewcommand{\makelabel}[1]{\textbf{##1:}} @@ -268,7 +268,7 @@ % % - The function's signature: an EpydocFunctionSignature environment % specifying the signature for the function. - +% % - The function's description (from the docstring) % % - The function's parameters: An EpydocFunctionParameters list This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |