diff options
author | Fred Drake <fdrake@acm.org> | 2001-12-05 22:27:47 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-12-05 22:27:47 (GMT) |
commit | ee836445d1f7d1ef46ee1b56b2fa21b8f8d5ceaf (patch) | |
tree | 57b24eea367c20c4775be82e7e49dcc56e0eae9c | |
parent | 8b55b2d9aa07060861f9e7bae53791cefd5d3743 (diff) | |
download | cpython-ee836445d1f7d1ef46ee1b56b2fa21b8f8d5ceaf.zip cpython-ee836445d1f7d1ef46ee1b56b2fa21b8f8d5ceaf.tar.gz cpython-ee836445d1f7d1ef46ee1b56b2fa21b8f8d5ceaf.tar.bz2 |
Added a missing period at the end of an error message.
-rwxr-xr-x | Lib/profile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/profile.py b/Lib/profile.py index ed77521..82b9bfe 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": |