[Epydoc-commits] SF.net SVN: epydoc: [1787] trunk/epydoc/src/epydoc/cli.py
Brought to you by:
edloper
From: <ed...@us...> - 2008-02-24 19:43:47
|
Revision: 1787 http://epydoc.svn.sourceforge.net/epydoc/?rev=1787&view=rev Author: edloper Date: 2008-02-24 11:43:45 -0800 (Sun, 24 Feb 2008) Log Message: ----------- - Fixed bug caused my change in return value of parse_arguments Modified Paths: -------------- trunk/epydoc/src/epydoc/cli.py Modified: trunk/epydoc/src/epydoc/cli.py =================================================================== --- trunk/epydoc/src/epydoc/cli.py 2008-02-24 19:43:23 UTC (rev 1786) +++ trunk/epydoc/src/epydoc/cli.py 2008-02-24 19:43:45 UTC (rev 1787) @@ -1200,7 +1200,7 @@ return try: prof = hotshot.Profile('hotshot.out') - prof = prof.runctx('main(*parse_arguments())', globals(), {}) + prof = prof.runctx('main(parse_arguments())', globals(), {}) except SystemExit: pass prof.close() @@ -1230,7 +1230,7 @@ Profile.dispatch['c_exception'] = trace_dispatch_return try: prof = Profile() - prof = prof.runctx('main(*parse_arguments())', globals(), {}) + prof = prof.runctx('main(parse_arguments())', globals(), {}) except SystemExit: pass prof.dump_stats('profile.out') This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |