[Python-checkins] CVS: python/nondist/peps pep2html.py,1.15,1.16
Thomas Wouters
python-dev@python.org
Wed, 1 Nov 2000 15:45:50 -0800
Update of /cvsroot/python/python/nondist/peps
In directory slayer.i.sourceforge.net:/tmp/cvs-serv12019
Modified Files:
pep2html.py
Log Message:
Add -u and --user options to the call to getopt, to make them actually work.
Index: pep2html.py
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep2html.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** pep2html.py 2000年09月08日 15:31:36 1.15
--- pep2html.py 2000年11月01日 23:45:47 1.16
***************
*** 192,197 ****
try:
! opts, args = getopt.getopt(sys.argv[1:], 'ihq',
! ['install', 'help', 'quiet'])
except getopt.error, msg:
usage(1, msg)
--- 192,197 ----
try:
! opts, args = getopt.getopt(sys.argv[1:], 'ihqu:',
! ['install', 'help', 'quiet', 'user='])
except getopt.error, msg:
usage(1, msg)