[Epydoc-commits] SF.net SVN: epydoc: [1234] trunk/epydoc/src/epydoc/cli.py
Brought to you by:
edloper
From: <dva...@us...> - 2006-06-22 14:53:57
|
Revision: 1234 Author: dvarrazzo Date: 2006-06-22 07:53:52 -0700 (Thu, 22 Jun 2006) ViewCVS: http://svn.sourceforge.net/epydoc/?rev=1234&view=rev Log Message: ----------- - Verbosity values from config file and command line are summed together (the latter used to overwrite the former). Modified Paths: -------------- trunk/epydoc/src/epydoc/cli.py Modified: trunk/epydoc/src/epydoc/cli.py =================================================================== --- trunk/epydoc/src/epydoc/cli.py 2006-06-22 14:47:48 UTC (rev 1233) +++ trunk/epydoc/src/epydoc/cli.py 2006-06-22 14:53:52 UTC (rev 1234) @@ -286,7 +286,8 @@ optparser.error("Invalid graph type %s." % graph_type) # Calculate verbosity. - options.verbosity = options.verbose - options.quiet + verbosity = getattr(options, 'verbosity', 0) + options.verbosity = verbosity + options.verbose - options.quiet # The target default depends on the action. if options.target is None: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |