[Python-checkins] cpython: Fix test name in debug message

eric.araujo python-checkins at python.org
Wed Jun 1 19:47:49 CEST 2011


http://hg.python.org/cpython/rev/f03ee0cdd8aa
changeset:   70582:f03ee0cdd8aa
parent:      70520:fedb33e2bf77
user:        Éric Araujo <merwok at netwok.org>
date:        Tue May 31 14:33:32 2011 +0200
summary:
  Fix test name in debug message

files:
  Lib/packaging/tests/test_command_build_ext.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/packaging/tests/test_command_build_ext.py b/Lib/packaging/tests/test_command_build_ext.py
--- a/Lib/packaging/tests/test_command_build_ext.py
+++ b/Lib/packaging/tests/test_command_build_ext.py
@@ -370,8 +370,8 @@
     src = _get_source_filename()
     if not os.path.exists(src):
         if verbose:
-            print ('test_build_ext: Cannot find source code (test'
-                   ' must run in python build dir)')
+            print('test_command_build_ext: Cannot find source code (test'
+                  ' must run in python build dir)')
         return unittest.TestSuite()
     else:
         return unittest.makeSuite(BuildExtTestCase)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list