From 54898808c93ba3d77a0e331e6d9bcb4e4ef64145 Mon Sep 17 00:00:00 2001
From: Eugine Blikh <bigbes@gmail.com>
Date: Wed, 19 Feb 2014 17:54:12 +0400
Subject: [PATCH] Fix error, when strings that not start with +, -, @ weren't
 show in log of test_system

---
 test/lib/colorer.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/test/lib/colorer.py b/test/lib/colorer.py
index 643ea87d20..e46517441c 100644
--- a/test/lib/colorer.py
+++ b/test/lib/colorer.py
@@ -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()
-- 
GitLab