[Epydoc-commits] SF.net SVN: epydoc: [1276] trunk/epydoc/src/epydoc/gui.py
Brought to you by:
edloper
From: <ed...@us...> - 2006-08-21 13:09:37
|
Revision: 1276 Author: edloper Date: 2006-08-21 06:09:34 -0700 (Mon, 21 Aug 2006) ViewCVS: http://svn.sourceforge.net/epydoc/?rev=1276&view=rev Log Message: ----------- - Fixed SF bug [ 1480680 ] Alpha 2 Windows Forgets Output Directory. Modified Paths: -------------- trunk/epydoc/src/epydoc/gui.py Modified: trunk/epydoc/src/epydoc/gui.py =================================================================== --- trunk/epydoc/src/epydoc/gui.py 2006-08-21 12:15:25 UTC (rev 1275) +++ trunk/epydoc/src/epydoc/gui.py 2006-08-21 13:09:34 UTC (rev 1276) @@ -208,7 +208,7 @@ @param options: The options to use for generating documentation. This includes keyword options that can be given to - L{html.HTMLFormatter}, as well as the option C{outdir}, which + L{html.HTMLFormatter}, as well as the option C{target}, which controls where the output is written to. @type options: C{dictionary} """ @@ -1037,7 +1037,7 @@ self._help_entry.insert(0, opts.get('help')) self._out_entry.delete(0, 'end') - self._out_entry.insert(0, opts.get('outdir', 'html')) + self._out_entry.insert(0, opts.get('target', 'html')) self._frames_var.set(opts.get('frames', 1)) self._private_var.set(opts.get('private', 1)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |