[Epydoc-commits] SF.net SVN: epydoc: [1610] trunk/epydoc/src/epydoc/cli.py
Brought to you by:
edloper
|
From: <ed...@us...> - 2007-09-23 04:19:58
|
Revision: 1610
http://epydoc.svn.sourceforge.net/epydoc/?rev=1610&view=rev
Author: edloper
Date: 2007-09-22 21:19:57 -0700 (Sat, 22 Sep 2007)
Log Message:
-----------
- Fixed 3 bugs in config file parsing, that resulted in options getting
ignored (sf bug 1721683)
Modified Paths:
--------------
trunk/epydoc/src/epydoc/cli.py
Modified: trunk/epydoc/src/epydoc/cli.py
===================================================================
--- trunk/epydoc/src/epydoc/cli.py 2007-09-23 04:11:50 UTC (rev 1609)
+++ trunk/epydoc/src/epydoc/cli.py 2007-09-23 04:19:57 UTC (rev 1610)
@@ -538,11 +538,11 @@
if val.lower() not in INHERITANCE_STYLES:
raise ValueError('"%s" expected one of: %s.' %
(optname, ', '.join(INHERITANCE_STYLES)))
- options.inerhitance = val.lower()
+ options.inheritance = val.lower()
elif optname =='private':
- options.private = _str_to_bool(val, optname)
+ options.show_private = _str_to_bool(val, optname)
elif optname =='imports':
- options.imports = _str_to_bool(val, optname)
+ options.show_imports = _str_to_bool(val, optname)
elif optname == 'sourcecode':
options.include_source_code = _str_to_bool(val, optname)
elif optname in ('include-log', 'include_log'):
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|