From 2e599406965712511988bfae80a8ffa9a8e8720f Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Wed, 22 Feb 2012 09:56:25 -0500 Subject: [PATCH] jsvn: tweak colordiff "@@" coloring --- jsvn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsvn b/jsvn index 0224e95..df0691d 100755 --- a/jsvn +++ b/jsvn @@ -110,8 +110,8 @@ def colordiff(out, line): if m is not None: ansi_color(out, 'cyan') out.write(m.group(1)) - out.write(m.group(2)) ansi_reset(out) + out.write(m.group(2)) out.write('\n') return out.write(line)