mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Merged revisions 73827 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73827 | tarek.ziade | 2009-07-04 04:02:41 +0200 (Sat, 04 Jul 2009) | 1 line Fixed #6413: fixed log level in distutils.dist.announce ........
This commit is contained in:
parent
9023e68572
commit
05bf01aeae
2 changed files with 4 additions and 2 deletions
|
|
@ -907,8 +907,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