From 88d9498e6b514ee99ee240486f815d0d8a615dc5 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 5 Sep 2008 00:43:33 +0000 Subject: [PATCH] fix small typo --- Lib/test/test_threadedtempfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_threadedtempfile.py b/Lib/test/test_threadedtempfile.py index 73834673846..6d84e7eef3b 100644 --- a/Lib/test/test_threadedtempfile.py +++ b/Lib/test/test_threadedtempfile.py @@ -63,7 +63,7 @@ def test_main(self): 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)