[Python-checkins] CVS: python/dist/src/Lib profile.py,1.43,1.44
Fred L. Drake
fdrake@users.sourceforge.net
2001年12月05日 14:27:49 -0800
Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv30338/Lib
Modified Files:
profile.py
Log Message:
Added a missing period at the end of an error message.
Index: profile.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/profile.py,v
retrieving revision 1.43
retrieving revision 1.44
diff -C2 -d -r1.43 -r1.44
*** profile.py 2001年10月17日 01:49:50 1.43
--- profile.py 2001年12月05日 22:27:47 1.44
***************
*** 82,91 ****
fullname = os.path.join(dirname, 'profile.doc')
if os.path.exists(fullname):
! sts = os.system('${PAGER-more} '+fullname)
if sts: print '*** Pager exit status:', sts
break
else:
print 'Sorry, can\'t find the help file "profile.doc"',
! print 'along the Python search path'
--- 82,91 ----
fullname = os.path.join(dirname, 'profile.doc')
if os.path.exists(fullname):
! sts = os.system('${PAGER-more} ' + fullname)
if sts: print '*** Pager exit status:', sts
break
else:
print 'Sorry, can\'t find the help file "profile.doc"',
! print 'along the Python search path.'