delete unused local variable (pychecker caught)

This commit is contained in:
Skip Montanaro 2003-07-13 15:18:12 +00:00
parent 4ee893fe39
commit ae5c37b7b3
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ class TestCase:
try:
testMethod()
ok = 1
except self.failureException, e:
except self.failureException:
result.addFailure(self, self.__exc_info())
except KeyboardInterrupt:
raise