[Python-3000-checkins] r66228 - python/branches/py3k/Lib/test/test_threadedtempfile.py

benjamin.peterson python-3000-checkins at python.org
Fri Sep 5 02:43:34 CEST 2008


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)
 


More information about the Python-3000-checkins mailing list