diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-09-05 00:43:33 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-09-05 00:43:33 (GMT) |
commit | 88d9498e6b514ee99ee240486f815d0d8a615dc5 (patch) | |
tree | 739f24780ed88c421387ef2a1a3e97d7e4396d53 /Lib/test/test_threadedtempfile.py | |
parent | d79dc6216cf062a3eb0c100f8b546bf0a867e450 (diff) | |
download | cpython-88d9498e6b514ee99ee240486f815d0d8a615dc5.zip cpython-88d9498e6b514ee99ee240486f815d0d8a615dc5.tar.gz cpython-88d9498e6b514ee99ee240486f815d0d8a615dc5.tar.bz2 |
fix small typo
Diffstat (limited to 'Lib/test/test_threadedtempfile.py')
-rw-r--r-- | Lib/test/test_threadedtempfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_threadedtempfile.py b/Lib/test/test_threadedtempfile.py index 7383467..6d84e7e 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) |