Kaydet (Commit) ee836445 authored tarafından Fred Drake's avatar Fred Drake

Added a missing period at the end of an error message.

üst 8b55b2d9
...@@ -81,12 +81,12 @@ def help(): ...@@ -81,12 +81,12 @@ def help():
for dirname in sys.path: for dirname in sys.path:
fullname = os.path.join(dirname, 'profile.doc') fullname = os.path.join(dirname, 'profile.doc')
if os.path.exists(fullname): if os.path.exists(fullname):
sts = os.system('${PAGER-more} '+fullname) sts = os.system('${PAGER-more} ' + fullname)
if sts: print '*** Pager exit status:', sts if sts: print '*** Pager exit status:', sts
break break
else: else:
print 'Sorry, can\'t find the help file "profile.doc"', 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": if os.name == "mac":
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment