From cfa516f8a31d763429942e8c658a1afcbc7ee46a Mon Sep 17 00:00:00 2001 From: "iannucci@chromium.org" Date: Fri, 4 Apr 2014 17:13:33 +0000 Subject: [PATCH] Fix colorization bug in git_map. Previously BRIGHT+WHITE would wrap around to the asterisk on the next line. R=agable@chromium.org BUG= Review URL: https://codereview.chromium.org/224933003 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@261783 0039d316-1c4b-4281-b951-d872f2087c98 --- git_map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git_map.py b/git_map.py index 5f2e9b415..14d7e7541 100755 --- a/git_map.py +++ b/git_map.py @@ -66,7 +66,7 @@ def main(): line = line.rstrip(newline) line += ''.join( (BRIGHT, WHITE, ' <(%s)' % (', '.join(base_for_branches)), - newline)) + RESET, newline)) for b in base_for_branches: del merge_base_map[b]