SVN: zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/runner.py Copy/Paste error.
Lennart Regebro <[email protected]>
| Newsgroups | gmane.comp.web.zope.zope3.cvs |
|---|---|
| Message-ID | <20091210135344.ECA249417F__21382.785056676$1260453295$gmane$org@cvs.zope.org> |
Log message for revision 106392:
Copy/Paste error.
Changed:
U zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/runner.py
-=-
Modified: zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/runner.py
===================================================================
--- zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/runner.py 2009-12-10 13:48:22 UTC (rev 106391)
+++ zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/runner.py 2009-12-10 13:53:44 UTC (rev 106392)
@@ -461,7 +461,7 @@
# Doing erriter.next().strip() confuses the 2to3 fixer, so
# we need to do it on a separate line:
next_fail = erriter.next()
- failures.append((next_fail.next().strip(), None))
+ failures.append((next_fail.strip(), None))
while nerr > 0:
nerr -= 1
# Doing erriter.next().strip() confuses the 2to3 fixer, so