Fixed #6413: fixed log level in distutils.dist.announce

This commit is contained in:
Tarek Ziadé 2009-07-04 02:02:41 +00:00
parent c197d0ada2
commit 63f1738d4b
2 changed files with 4 additions and 2 deletions

View File

@ -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.

View File

@ -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.