[Zope3-checkins] CVS: ZODB4/ZEO/tests - TestThread.py:1.2
Jeremy Hylton
jeremy@zope.com
Fri, 13 Dec 2002 17:07:22 -0500
Update of /cvs-repository/ZODB4/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv27056/ZEO/tests
Modified Files:
TestThread.py
Log Message:
Don't bind exception to variable. It's unused.
=== ZODB4/ZEO/tests/TestThread.py 1.1 => 1.2 ===
--- ZODB4/ZEO/tests/TestThread.py:1.1 Fri Nov 22 16:24:53 2002
+++ ZODB4/ZEO/tests/TestThread.py Fri Dec 13 17:07:22 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" %