[Python-checkins] r67978 - python/trunk/setup.py

georg.brandl python-checkins at python.org
Sun Dec 28 12:58:50 CET 2008


Author: georg.brandl
Date: Sun Dec 28 12:58:49 2008
New Revision: 67978

Log:
#4731: clarify message about missing module prerequisites.


Modified:
   python/trunk/setup.py

Modified: python/trunk/setup.py
==============================================================================
--- python/trunk/setup.py	(original)
+++ python/trunk/setup.py	Sun Dec 28 12:58:49 2008
@@ -215,7 +215,8 @@
 
         if missing:
             print
-            print "Failed to find the necessary bits to build these modules:"
+            print ("Python build finished, but the necessary bits to build "
+                   "these modules were not found:")
             print_three_column(missing)
             print ("To find the necessary bits, look in setup.py in"
                    " detect_modules() for the module's name.")


More information about the Python-checkins mailing list