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.
This commit is contained in:
parent
db240e294e
commit
484320ac19
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user