# HG changeset patch # User Yuya Nishihara # Date 1519911519 18000 # Node ID faaabe0dc4d1090ae121ca32b79f42a8de9b7929 # Parent 169ac2bb3c9c93d3ab9ff1e9c04f0580425da292 py3: use bytes.endswith('\n') to strip off '\n' from debug color output diff -r 169ac2bb3c9c -r faaabe0dc4d1 mercurial/color.py --- 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)