[Python-checkins] CVS: python/nondist/peps pep2html.py,1.29,1.30
M.-A. Lemburg
lemburg@users.sourceforge.net
2002年2月04日 14:38:30 -0800
Update of /cvsroot/python/python/nondist/peps
In directory usw-pr-cvs1:/tmp/cvs-serv8170
Modified Files:
pep2html.py
Log Message:
Fixed a typo which caused help (-h) to fail.
Index: pep2html.py
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep2html.py,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** pep2html.py 2001年11月12日 14:58:07 1.29
--- pep2html.py 2002年02月04日 22:38:27 1.30
***************
*** 59,63 ****
def usage(code, msg=''):
! print >> sys.stderr, __docs__ % globals()
if msg:
print >> sys.stderr, msg
--- 59,63 ----
def usage(code, msg=''):
! print >> sys.stderr, __doc__ % globals()
if msg:
print >> sys.stderr, msg