Commit cfa516f8 authored by iannucci@chromium.org's avatar iannucci@chromium.org

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
parent 9e849276
......@@ -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]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment