[Epydoc-commits] SF.net SVN: epydoc: [1258] trunk/epydoc/src/epydoc/cli.py
Brought to you by:
edloper
From: <ed...@us...> - 2006-08-21 09:17:00
|
Revision: 1258 Author: edloper Date: 2006-08-21 02:16:55 -0700 (Mon, 21 Aug 2006) ViewCVS: http://svn.sourceforge.net/epydoc/?rev=1258&view=rev Log Message: ----------- made 'ouptput' option in config file case insensitive Modified Paths: -------------- trunk/epydoc/src/epydoc/cli.py Modified: trunk/epydoc/src/epydoc/cli.py =================================================================== --- trunk/epydoc/src/epydoc/cli.py 2006-08-21 09:06:08 UTC (rev 1257) +++ trunk/epydoc/src/epydoc/cli.py 2006-08-21 09:16:55 UTC (rev 1258) @@ -312,7 +312,7 @@ 'module', 'object', 'value'): names.extend(val.replace(',', ' ').split()) elif optname == 'output': - if val not in ACTIONS: + if val.lower() not in ACTIONS: raise ValueError('"%s" expected one of: %s' % (optname, ', '.join(ACTIONS))) options.action = val.lower() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |