Update of /cvsroot/webware/Webware
In directory usw-pr-cvs1:/tmp/cvs-serv9022
Modified Files:
install.py
Log Message:
- recognize "h" and "help" even without the dashes
Index: install.py
===================================================================
RCS file: /cvsroot/webware/Webware/install.py,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** install.py 20 Jun 2002 17:47:38 -0000 1.37
--- install.py 14 Sep 2002 17:48:42 -0000 1.38
***************
*** 547,551 ****
defaultpass=a
passprompt=0
! if o in ("-h", "--help"):
printHelp()
sys.exit(0)
--- 547,551 ----
defaultpass=a
passprompt=0
! if o in ("-h", "--help", "h", "help"):
printHelp()
sys.exit(0)
|