diff options
author | Éric Araujo <merwok@netwok.org> | 2011-05-31 12:33:32 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-05-31 12:33:32 (GMT) |
commit | b4fefc8fa2722afa79fb8f519e74ab0b558ec19f (patch) | |
tree | c9466cd65c9e62c86dba1e004f1d47f4f030fc01 | |
parent | b9c09878ab8390aa9b78ff468f42ed91bae2b1fe (diff) | |
download | cpython-b4fefc8fa2722afa79fb8f519e74ab0b558ec19f.zip cpython-b4fefc8fa2722afa79fb8f519e74ab0b558ec19f.tar.gz cpython-b4fefc8fa2722afa79fb8f519e74ab0b558ec19f.tar.bz2 |
Fix test name in debug message
-rw-r--r-- | 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 index a7856d2..9729559 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) |