summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-12-05 22:27:47 +0000
committerFred Drake <fdrake@acm.org>2001-12-05 22:27:47 +0000
commit4c51e47b8823f0c4e3e473805ae6ee85ddd342a4 (patch)
treec7b3827b4b8b156fc556cd63d5be777252faf932
parent44a6c96c688629fd55635a0e2a7da7b64799329d (diff)
downloadcpython-4c51e47b8823f0c4e3e473805ae6ee85ddd342a4.tar.gz
Added a missing period at the end of an error message.
-rwxr-xr-xLib/profile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/profile.py b/Lib/profile.py
index ed77521607..82b9bfe595 100755
--- a/Lib/profile.py
+++ b/Lib/profile.py
@@ -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":