Commit 63f1738d authored by Tarek Ziadé's avatar Tarek Ziadé

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

parent c197d0ad
...@@ -914,8 +914,8 @@ Common commands: (see '--help-commands' for more) ...@@ -914,8 +914,8 @@ Common commands: (see '--help-commands' for more)
# -- Methods that operate on the Distribution ---------------------- # -- Methods that operate on the Distribution ----------------------
def announce(self, msg, level=1): def announce(self, msg, level=log.INFO):
log.debug(msg) log.log(level, msg)
def run_commands(self): def run_commands(self):
"""Run each command that was seen on the setup script command line. """Run each command that was seen on the setup script command line.
......
...@@ -347,6 +347,8 @@ Core and Builtins ...@@ -347,6 +347,8 @@ Core and Builtins
Library Library
------- -------
- Issue #6413: Fixed the log level in distutils.dist for announce.
- Issue #3392: The subprocess communicate() method no longer fails in select() - Issue #3392: The subprocess communicate() method no longer fails in select()
when file descriptors are large; communicate() now uses poll() when possible. when file descriptors are large; communicate() now uses poll() when possible.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment