[Epydoc-commits] SF.net SVN: epydoc: [1236] trunk/epydoc/src/epydoc/cli.py
Brought to you by:
edloper
From: <dva...@us...> - 2006-06-22 15:42:53
|
Revision: 1236 Author: dvarrazzo Date: 2006-06-22 08:42:48 -0700 (Thu, 22 Jun 2006) ViewCVS: http://svn.sourceforge.net/epydoc/?rev=1236&view=rev Log Message: ----------- - "output" correctly parsed from config file. Modified Paths: -------------- trunk/epydoc/src/epydoc/cli.py Modified: trunk/epydoc/src/epydoc/cli.py =================================================================== --- trunk/epydoc/src/epydoc/cli.py 2006-06-22 15:34:55 UTC (rev 1235) +++ trunk/epydoc/src/epydoc/cli.py 2006-06-22 15:42:48 UTC (rev 1236) @@ -311,10 +311,10 @@ 'module', 'object', 'value'): names.extend(val.replace(',', ' ').split()) elif optname == 'output': - if optname not in ACTIONS: + if val not in ACTIONS: raise ValueError('"%s" expected one of: %s' % (optname, ', '.join(ACTIONS))) - options.action = action + options.action = val elif optname == 'target': options.target = val elif optname == 'inheritance': This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |