From 484320ac1954b90b79bcd1b2203e5e0abbe65bc0 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Wed, 25 May 2016 23:32:35 +0200 Subject: [PATCH] quteproc: see lines starting with ' ' as error Now that json logging is used, multiple lines should be correctly escaped (and parsed), even in tracebacks, so this check should now be obsolete. --- tests/end2end/fixtures/quteprocess.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index 91818f185..df74279d3 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -176,10 +176,7 @@ class QuteProc(testprocess.Process): try: log_line = LogLine(line) except testprocess.InvalidLine: - if line.startswith(' '): - # Multiple lines in some log output... - return None - elif not line.strip(): + if not line.strip(): return None elif is_ignored_qt_message(line): return None