From: Éric Araujo Date: Tue, 31 May 2011 12:33:32 +0000 (+0200) Subject: Fix test name in debug message X-Git-Tag: v3.3.0a1~2183^2~21^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b4fefc8fa2722afa79fb8f519e74ab0b558ec19f;p=python Fix test name in debug message --- diff --git a/Lib/packaging/tests/test_command_build_ext.py b/Lib/packaging/tests/test_command_build_ext.py index a7856d21e6..9729559865 100644 --- a/Lib/packaging/tests/test_command_build_ext.py +++ b/Lib/packaging/tests/test_command_build_ext.py @@ -370,8 +370,8 @@ def test_suite(): 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)