summaryrefslogtreecommitdiff
path: root/Lib/profile.py
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
commitee836445d1f7d1ef46ee1b56b2fa21b8f8d5ceaf (patch)
tree57b24eea367c20c4775be82e7e49dcc56e0eae9c /Lib/profile.py
parent8b55b2d9aa07060861f9e7bae53791cefd5d3743 (diff)
downloadcpython-git-ee836445d1f7d1ef46ee1b56b2fa21b8f8d5ceaf.tar.gz
Added a missing period at the end of an error message.
Diffstat (limited to 'Lib/profile.py')
-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":