color update output for "U"pdated items cyan

also change merGed to magenta
This commit is contained in:
Josh Holtrop 2012-03-26 13:44:41 -04:00
parent ce8b679910
commit 7def1721f4

4
jsvn
View File

@ -363,10 +363,12 @@ def filter_update(pout, out):
ansi_color(out, 'green')
elif action == 'D':
ansi_color(out, 'red')
elif action == 'U':
ansi_color(out, 'cyan')
elif action == 'C':
ansi_color(out, 'yellow')
elif action == 'G':
ansi_color(out, 'cyan')
ansi_color(out, 'magenta')
out.write(line)
ansi_reset(out)
continue