[Epydoc-commits] SF.net SVN: epydoc: [1702] trunk/epydoc/src/epydoc/cli.py
Brought to you by:
edloper
From: <ed...@us...> - 2008-01-31 06:50:06
|
Revision: 1702 http://epydoc.svn.sourceforge.net/epydoc/?rev=1702&view=rev Author: edloper Date: 2008-01-30 22:50:04 -0800 (Wed, 30 Jan 2008) Log Message: ----------- - Pass options to plaintext writer Modified Paths: -------------- trunk/epydoc/src/epydoc/cli.py Modified: trunk/epydoc/src/epydoc/cli.py =================================================================== --- trunk/epydoc/src/epydoc/cli.py 2008-01-31 06:49:44 UTC (rev 1701) +++ trunk/epydoc/src/epydoc/cli.py 2008-01-31 06:50:04 UTC (rev 1702) @@ -950,7 +950,7 @@ plaintext_writer = PlaintextWriter() s = '' for apidoc in docindex.root: - s += plaintext_writer.write(apidoc) + s += plaintext_writer.write(apidoc, **options.__dict__) log.end_progress() if isinstance(s, unicode): s = s.encode('ascii', 'backslashreplace') This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |