mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
Added a missing period at the end of an error message.
This commit is contained in:
parent
8b55b2d9aa
commit
ee836445d1
1 changed files with 2 additions and 2 deletions
|
|
@ -81,12 +81,12 @@ def help():
|
|||
for dirname in sys.path:
|
||||
fullname = os.path.join(dirname, 'profile.doc')
|
||||
if os.path.exists(fullname):
|
||||
sts = os.system('${PAGER-more} '+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'
|
||||
print 'along the Python search path.'
|
||||
|
||||
|
||||
if os.name == "mac":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue