diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-05-24 09:00:04 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-05-24 09:00:04 (GMT) |
commit | 68faf5b0fc24e11af95a60cef3f9d13fc85b2711 (patch) | |
tree | ff5447281cad097c87b261b563e854f887c40181 /Lib/distutils | |
parent | 5f5434074a3ee48cdb7c111e4413fae4775aa1bc (diff) | |
download | cpython-68faf5b0fc24e11af95a60cef3f9d13fc85b2711.zip cpython-68faf5b0fc24e11af95a60cef3f9d13fc85b2711.tar.gz cpython-68faf5b0fc24e11af95a60cef3f9d13fc85b2711.tar.bz2 |
Use announce instead of print, to suppress output in
the testsuite.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/config.py b/Lib/distutils/config.py index 35a21ec..e07f8ac 100644 --- a/Lib/distutils/config.py +++ b/Lib/distutils/config.py @@ -62,7 +62,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 |