[Epydoc-commits] SF.net SVN: epydoc: [1599] trunk/epydoc/src/epydoc/gui.py
Brought to you by:
edloper
|
From: <ed...@us...> - 2007-09-21 22:46:29
|
Revision: 1599
http://epydoc.svn.sourceforge.net/epydoc/?rev=1599&view=rev
Author: edloper
Date: 2007-09-21 15:46:28 -0700 (Fri, 21 Sep 2007)
Log Message:
-----------
fixed -V option [sf bug 1795126]
Modified Paths:
--------------
trunk/epydoc/src/epydoc/gui.py
Modified: trunk/epydoc/src/epydoc/gui.py
===================================================================
--- trunk/epydoc/src/epydoc/gui.py 2007-09-06 13:02:50 UTC (rev 1598)
+++ trunk/epydoc/src/epydoc/gui.py 2007-09-21 22:46:28 UTC (rev 1599)
@@ -1120,7 +1120,7 @@
modules = []
for arg in sys.argv[1:]:
if arg[0] == '-':
- arg = arg.lower()
+ if arg != '-V': arg = arg.lower()
if arg in ('-h', '--help', '-?', '--usage'): _usage()
elif arg in ('-V', '--version'): _version()
elif arg in ('--debug',): DEBUG = 1
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|