Skip to content
Snippets Groups Projects
Commit 54898808 authored by Eugine Blikh's avatar Eugine Blikh
Browse files

Fix error, when strings that not start with +, -, @ weren't show in log of test_system

parent 879f5a02
No related merge requests found
......@@ -175,6 +175,8 @@ class Colorer(object):
self.write(i, schema='diff_out')
elif i.startswith('@'):
self.write(i, schema='diff_mark')
else:
self.write(i)
def flush(self):
return self.stdout.flush()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment