]> granicus.if.org Git - python/commitdiff
Added a missing period at the end of an error message.
authorFred Drake <fdrake@acm.org>
Wed, 5 Dec 2001 22:27:47 +0000 (22:27 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 5 Dec 2001 22:27:47 +0000 (22:27 +0000)
Lib/profile.py

index ed77521607bbad223627885fec145262372b8986..82b9bfe59583148b0e165935ff4c4bc4ee0c3f87 100755 (executable)
@@ -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":