From: Benjamin Peterson <benjamin@python.org> Date: Fri, 5 Sep 2008 00:43:33 +0000 (+0000) Subject: fix small typo X-Git-Tag: v3.0rc1~93 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=88d9498e6b514ee99ee240486f815d0d8a615dc5;p=python fix small typo --- diff --git a/Lib/test/test_threadedtempfile.py b/Lib/test/test_threadedtempfile.py index 7383467384..6d84e7eef3 100644 --- a/Lib/test/test_threadedtempfile.py +++ b/Lib/test/test_threadedtempfile.py @@ -63,7 +63,7 @@ class ThreadedTempFileTest(unittest.TestCase): t.join() ok += t.ok_count if t.error_count: - errors.append(str(t.get_name()) + str(t.errors.getvalue())) + errors.append(str(t.name) + str(t.errors.getvalue())) threading_cleanup(*thread_info)