# HG changeset patch # User Kevin Bullock # Date 1254286182 18000 # Node ID bcc27ee3a37ba4c9673b42e568ec2424da8bec8d # Parent 0d3c1aa9d5de3154f350b180aabd22bde3db7f58 color: allow multiple args to ui.write() diff -r 0d3c1aa9d5de -r bcc27ee3a37b hgext/color.py --- a/hgext/color.py Thu Oct 01 08:50:10 2009 +0200 +++ b/hgext/color.py Tue Sep 29 23:49:42 2009 -0500 @@ -162,9 +162,8 @@ return retval _patch_effects = { 'applied': ['blue', 'bold', 'underline'], - 'missing': ['red', 'bold'], - 'unapplied': ['black', 'bold'], } - + 'missing': ['red', 'bold'], + 'unapplied': ['black', 'bold'], } def colorwrap(orig, s): '''wrap ui.write for colored diff output''' lines = s.split('\n')