summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-07-04 02:04:21 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-07-04 02:04:21 (GMT)
commit05bf01aeae0c917276371a59b40bf9a6df9e78ce (patch)
treecf3fad1428aac693a43c5a14e4ef80d449c78d7b /Lib/distutils
parent9023e68572ca8fea1bc0138d56570f51b5e88b7a (diff)
downloadcpython-05bf01aeae0c917276371a59b40bf9a6df9e78ce.zip
cpython-05bf01aeae0c917276371a59b40bf9a6df9e78ce.tar.gz
cpython-05bf01aeae0c917276371a59b40bf9a6df9e78ce.tar.bz2
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 ........
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/dist.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py
index 915d336..092ec0d 100644
--- a/Lib/distutils/dist.py
+++ b/Lib/distutils/dist.py
@@ -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.