From 0038296135502331c302935106d7aa568f715200 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sat, 18 May 2013 20:48:47 +0200 Subject: [PATCH] Fixed ff881aef on Python 3. --- tests/view_tests/tests/test_debug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/view_tests/tests/test_debug.py b/tests/view_tests/tests/test_debug.py index 1022d05998..a84b41959c 100644 --- a/tests/view_tests/tests/test_debug.py +++ b/tests/view_tests/tests/test_debug.py @@ -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']: