[Epydoc-commits] SF.net SVN: epydoc: [1355] trunk/epydoc/src/epydoc/cli.py
Brought to you by:
edloper
From: <ed...@us...> - 2006-09-06 19:12:21
|
Revision: 1355 http://svn.sourceforge.net/epydoc/?rev=1355&view=rev Author: edloper Date: 2006-09-06 12:12:18 -0700 (Wed, 06 Sep 2006) Log Message: ----------- - If --debug is specified, then set epydoc.DEBUG to True. - Commented out what looks like some testing code Modified Paths: -------------- trunk/epydoc/src/epydoc/cli.py Modified: trunk/epydoc/src/epydoc/cli.py =================================================================== --- trunk/epydoc/src/epydoc/cli.py 2006-09-06 19:08:13 UTC (rev 1354) +++ trunk/epydoc/src/epydoc/cli.py 2006-09-06 19:12:18 UTC (rev 1355) @@ -408,10 +408,15 @@ ###################################################################### def main(options, names): - if options.action == 'text': - if options.parse and options.introspect: - options.parse = False + # Set the debug flag, if '--debug' was specified. + if options.debug: + epydoc.DEBUG = True + ## [XX] Did this serve a purpose? Commenting out for now: + #if options.action == 'text': + # if options.parse and options.introspect: + # options.parse = False + # Set up the logger if options.action == 'text': logger = None # no logger for text output. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |