diff options
| author | Fred Drake <fdrake@acm.org> | 2001-12-05 22:27:47 +0000 |
|---|---|---|
| committer | Fred Drake <fdrake@acm.org> | 2001-12-05 22:27:47 +0000 |
| commit | 4c51e47b8823f0c4e3e473805ae6ee85ddd342a4 (patch) | |
| tree | c7b3827b4b8b156fc556cd63d5be777252faf932 | |
| parent | 44a6c96c688629fd55635a0e2a7da7b64799329d (diff) | |
| download | cpython-4c51e47b8823f0c4e3e473805ae6ee85ddd342a4.tar.gz | |
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 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": |
