From: Tarek Ziadé Date: Sat, 4 Jul 2009 02:02:41 +0000 (+0000) Subject: Fixed #6413: fixed log level in distutils.dist.announce X-Git-Tag: v2.7a1~835 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63f1738d4bb904992afb748b3b2734d37cd7fdec;p=thirdparty%2FPython%2Fcpython.git Fixed #6413: fixed log level in distutils.dist.announce --- diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py index f4aecb419ed3..7c29bf6ca7d1 100644 --- a/Lib/distutils/dist.py +++ b/Lib/distutils/dist.py @@ -914,8 +914,8 @@ Common commands: (see '--help-commands' for more) # -- Methods that operate on the Distribution ---------------------- - def announce(self, msg, level=1): - log.debug(msg) + def announce(self, msg, level=log.INFO): + log.log(level, msg) def run_commands(self): """Run each command that was seen on the setup script command line. diff --git a/Misc/NEWS b/Misc/NEWS index 232eb4c1397c..971b25e55e04 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -347,6 +347,8 @@ Core and Builtins Library ------- +- Issue #6413: Fixed the log level in distutils.dist for announce. + - Issue #3392: The subprocess communicate() method no longer fails in select() when file descriptors are large; communicate() now uses poll() when possible.