[Epydoc-commits] SF.net SVN: epydoc: [1252] trunk/epydoc/src/epydoc/cli.py
Brought to you by:
edloper
From: <ed...@us...> - 2006-08-21 07:20:26
|
Revision: 1252 Author: edloper Date: 2006-08-21 00:04:18 -0700 (Mon, 21 Aug 2006) ViewCVS: http://svn.sourceforge.net/epydoc/?rev=1252&view=rev Log Message: ----------- - Fixed sf bug #1510231 "frames" directive ignored in configuration file Modified Paths: -------------- trunk/epydoc/src/epydoc/cli.py Modified: trunk/epydoc/src/epydoc/cli.py =================================================================== --- trunk/epydoc/src/epydoc/cli.py 2006-08-21 07:02:32 UTC (rev 1251) +++ trunk/epydoc/src/epydoc/cli.py 2006-08-21 07:04:18 UTC (rev 1252) @@ -338,7 +338,7 @@ elif optname == 'help': options.help_file = val elif optname =='frames': - options.frames = _str_to_bool(val, optname) + options.show_frames = _str_to_bool(val, optname) elif optname =='private': options.private = _str_to_bool(val, optname) elif optname =='imports': This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |