[Epydoc-commits] SF.net SVN: epydoc: [1588] trunk/epydoc/src/epydoc/apidoc.py
Brought to you by:
edloper
|
From: <dva...@us...> - 2007-03-25 13:37:16
|
Revision: 1588
http://svn.sourceforge.net/epydoc/?rev=1588&view=rev
Author: dvarrazzo
Date: 2007-03-25 06:37:13 -0700 (Sun, 25 Mar 2007)
Log Message:
-----------
- `init_sorted_variables()` really called.
Currently the docbuilder always calls it before, so this row is
actually never reached.
Modified Paths:
--------------
trunk/epydoc/src/epydoc/apidoc.py
Modified: trunk/epydoc/src/epydoc/apidoc.py
===================================================================
--- trunk/epydoc/src/epydoc/apidoc.py 2007-03-20 00:58:51 UTC (rev 1587)
+++ trunk/epydoc/src/epydoc/apidoc.py 2007-03-25 13:37:13 UTC (rev 1588)
@@ -1010,7 +1010,7 @@
L{sorted_variables} and L{group_specs} attributes.
"""
if self.sorted_variables is UNKNOWN:
- self.init_sorted_variables
+ self.init_sorted_variables()
assert len(self.sorted_variables) == len(self.variables)
elts = [(v.name, v) for v in self.sorted_variables]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|