#4731: clarify message about missing module prerequisites.

This commit is contained in:
Georg Brandl 2008-12-28 11:58:49 +00:00
parent 6425a2fa8f
commit 40f982fbdf

View file

@ -215,7 +215,8 @@ class PyBuildExt(build_ext):
if missing: if missing:
print 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_three_column(missing)
print ("To find the necessary bits, look in setup.py in" print ("To find the necessary bits, look in setup.py in"
" detect_modules() for the module's name.") " detect_modules() for the module's name.")