Commit a45e8e79 authored by Tarek Ziadé's avatar Tarek Ziadé

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

parent 570969b4
......@@ -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.
......
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