From: Georg Brandl Date: Sun, 28 Dec 2008 11:58:49 +0000 (+0000) Subject: #4731: clarify message about missing module prerequisites. X-Git-Tag: v2.7a1~2476 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40f982fbdfa7ae10b14f1906915cc15938f82641;p=thirdparty%2FPython%2Fcpython.git #4731: clarify message about missing module prerequisites. --- diff --git a/setup.py b/setup.py index a7fe3e4c330d..0948e67538c7 100644 --- a/setup.py +++ b/setup.py @@ -215,7 +215,8 @@ class PyBuildExt(build_ext): 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.")