From: Antoine Pitrou Date: Fri, 22 Jun 2012 22:49:44 +0000 (+0200) Subject: Fix silly mistake in debugging code X-Git-Tag: v3.3.0b1~151 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f0f4742b495554238d1204ce0002c1ef1ba23507;p=thirdparty%2FPython%2Fcpython.git Fix silly mistake in debugging code --- diff --git a/Lib/test/test_reprlib.py b/Lib/test/test_reprlib.py index 86ea40e24c5b..aca1d5b4a129 100644 --- a/Lib/test/test_reprlib.py +++ b/Lib/test/test_reprlib.py @@ -249,7 +249,7 @@ class LongReprTest(unittest.TestCase): self.skipTest("test paths too long (%d characters) for Windows' 260 character limit" % cached_path_len) elif os.name == 'nt' and verbose: - print("len(cached_path_len) =", len(cached_path_len)) + print("cached_path_len =", cached_path_len) def test_module(self): self._check_path_limitations(self.pkgname)