Kaydet (Commit) 00382961 authored tarafından Aymeric Augustin's avatar Aymeric Augustin

Fixed ff881aef on Python 3.

üst ff881aef
......@@ -125,7 +125,7 @@ class ExceptionReporterTests(TestCase):
def test_eol_support(self):
"""Test that the ExceptionReporter supports Unix, Windows and Macintosh EOL markers"""
LINES = list(u'print %d' % i for i in range(1,6))
LINES = list('print %d' % i for i in range(1, 6))
reporter = ExceptionReporter(None, None, None, None)
for newline in ['\n','\r\n','\r']:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment