From 7def1721f4d5efd1c19a269d4b2049f84fffd68c Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 26 Mar 2012 13:44:41 -0400 Subject: [PATCH] color update output for "U"pdated items cyan also change merGed to magenta --- jsvn | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jsvn b/jsvn index e4ac521..cefa3a8 100755 --- a/jsvn +++ b/jsvn @@ -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