author | Yuya Nishihara <yuya@tcha.org> |
Thu, 01 Mar 2018 08:38:39 -0500 | |
changeset 36532 | faaabe0dc4d1 |
parent 36531 | 169ac2bb3c9c |
child 36533 | 8b662717c53f |
--- 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)