Added a missing period at the end of an error message.
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 @@
     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":