Mercurial > public > mercurial-scm > hg-stable
diff mercurial/color.py @ 36532:faaabe0dc4d1
py3: use bytes.endswith('\n') to strip off '\n' from debug color output
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Thu, 01 Mar 2018 08:38:39 -0500 |
parents | a4478f74ad56 |
children | f0b6fbea00cf |
line wrap: on
line diff
--- a/mercurial/color.py Thu Mar 01 08:19:47 2018 -0500 +++ b/mercurial/color.py Thu Mar 01 08:38:39 2018 -0500 @@ -371,7 +371,7 @@ """add color control code according to the mode""" if ui._colormode == 'debug': if label and msg: - if msg[-1] == '\n': + if msg.endswith('\n'): msg = "[%s|%s]\n" % (label, msg[:-1]) else: msg = "[%s|%s]" % (label, msg)