]> granicus.if.org Git - python/commitdiff
Merged revisions 63575 via svnmerge from
authorGeorg Brandl <georg@python.org>
Mon, 26 May 2008 17:01:57 +0000 (17:01 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 26 May 2008 17:01:57 +0000 (17:01 +0000)
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.
........

Lib/distutils/config.py

index 6ffccaa095690b046a5198aff238f9dbd9dd4198..0ecfe0cc3458f487c8b9ae6da4cca09fd9ee7574 100644 (file)
@@ -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