Discussion:
[Python-3000-checkins] r66228 - python/branches/py3k/Lib/test/test_threadedtempfile.py
benjamin.peterson
2008-09-05 00:43:34 UTC
Permalink
Author: benjamin.peterson
Date: Fri Sep 5 02:43:33 2008
New Revision: 66228

Log:
fix small typo

Modified:
python/branches/py3k/Lib/test/test_threadedtempfile.py

Modified: python/branches/py3k/Lib/test/test_threadedtempfile.py
==============================================================================
--- python/branches/py3k/Lib/test/test_threadedtempfile.py (original)
+++ python/branches/py3k/Lib/test/test_threadedtempfile.py Fri Sep 5 02:43:33 2008
@@ -63,7 +63,7 @@
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)

Loading...