summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-07-04 02:02:41 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2009-07-04 02:02:41 +0000
commit63f1738d4bb904992afb748b3b2734d37cd7fdec (patch)
treed76abe333bc553f75bcef4e1c294192eab0ce535 /Lib
parentc197d0ada273a9f03fc7e213777a59bc3d11688f (diff)
downloadcpython-git-63f1738d4bb904992afb748b3b2734d37cd7fdec.tar.gz
Fixed #6413: fixed log level in distutils.dist.announce
Diffstat (limited to 'Lib')
-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 f4aecb419e..7c29bf6ca7 100644
--- a/Lib/distutils/dist.py
+++ b/Lib/distutils/dist.py
@@ -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.