[Epydoc-commits] SF.net SVN: epydoc: [1178] trunk/epydoc/src/epydoc/cli.py
Brought to you by:
edloper
From: <ed...@us...> - 2006-04-06 04:34:23
|
Revision: 1178 Author: edloper Date: 2006-04-05 21:34:20 -0700 (Wed, 05 Apr 2006) ViewCVS: http://svn.sourceforge.net/epydoc/?rev=1178&view=rev Log Message: ----------- - Fixed bug with "--graph all" option. Modified Paths: -------------- trunk/epydoc/src/epydoc/cli.py Modified: trunk/epydoc/src/epydoc/cli.py =================================================================== --- trunk/epydoc/src/epydoc/cli.py 2006-04-06 04:33:06 UTC (rev 1177) +++ trunk/epydoc/src/epydoc/cli.py 2006-04-06 04:34:20 UTC (rev 1178) @@ -268,7 +268,7 @@ # we don't have any profiling info to base them on). if graph_type == 'all': options.graphs = GRAPH_TYPES - if not options.pstat_files: graph_types.remove('callgraph') + if not options.pstat_files: option.graphs.remove('callgraph') break elif graph_type not in GRAPH_TYPES: optparser.error("Invalid graph type %s." % graph_type) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |