Commit 05bf01ae authored by Tarek Ziadé's avatar Tarek Ziadé

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
........
parent 9023e685
...@@ -907,8 +907,8 @@ Common commands: (see '--help-commands' for more) ...@@ -907,8 +907,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.
......
...@@ -865,6 +865,8 @@ Core and Builtins ...@@ -865,6 +865,8 @@ Core and Builtins
Library Library
------- -------
- Issue #6413: Fixed the log level in distutils.dist for announce.
- Issue #6403: Fixed package path usage in build_ext. - Issue #6403: Fixed package path usage in build_ext.
- Issue #6365: Distutils build_ext inplace mode was copying the compiled - Issue #6365: Distutils build_ext inplace mode was copying the compiled
......
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