mirror of
https://github.com/python/cpython.git
synced 2025-08-17 07:11:51 +00:00
Fixed #6413: fixed log level in distutils.dist.announce
This commit is contained in:
parent
c197d0ada2
commit
63f1738d4b
2 changed files with 4 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue