summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-26 17:01:57 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-26 17:01:57 (GMT)
commit1b466f25e1871ef1b2f3f56928de73ffa397871c (patch)
treebd5df04300c639c8781c8a619cbada94f6019ae3 /Lib
parent2442015af26321083d4a2d75c096c8b732f049b2 (diff)
downloadcpython-1b466f25e1871ef1b2f3f56928de73ffa397871c.zip
cpython-1b466f25e1871ef1b2f3f56928de73ffa397871c.tar.gz
cpython-1b466f25e1871ef1b2f3f56928de73ffa397871c.tar.bz2
Merged revisions 63575 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r63575 | martin.v.loewis | 2008-05-24 11:00:04 +0200 (Sat, 24 May 2008) | 3 lines Use announce instead of print, to suppress output in the testsuite. ........
Diffstat (limited to 'Lib')
-rw-r--r--Lib/distutils/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/config.py b/Lib/distutils/config.py
index 6ffccaa..0ecfe0c 100644
--- a/Lib/distutils/config.py
+++ b/Lib/distutils/config.py
@@ -58,7 +58,7 @@ class PyPIRCCommand(Command):
"""Reads the .pypirc file."""
rc = self._get_rc_file()
if os.path.exists(rc):
- print('Using PyPI login from %s' % rc)
+ self.announce('Using PyPI login from %s' % rc)
repository = self.repository or self.DEFAULT_REPOSITORY
realm = self.realm or self.DEFAULT_REALM