[Zodb-checkins] CVS: ZODB3/ZEO/tests - TestThread.py:1.4

Jeremy Hylton jeremy@zope.com
Fri, 13 Dec 2002 17:07:49 -0500


Update of /cvs-repository/ZODB3/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv27089/ZEO/tests

Modified Files:
	TestThread.py 
Log Message:
Don't bind exception to variable.  It's unused.


=== ZODB3/ZEO/tests/TestThread.py 1.3 => 1.4 ===
--- ZODB3/ZEO/tests/TestThread.py:1.3	Thu Aug 29 12:32:51 2002
+++ ZODB3/ZEO/tests/TestThread.py	Fri Dec 13 17:07:48 2002
@@ -30,7 +30,7 @@
     def run(self):
         try:
             self.testrun()
-        except Exception, err:
+        except Exception:
             s = StringIO()
             traceback.print_exc(file=s)
             self._testcase.fail("Exception in thread %s:\n%s\n" %