Mercurial > public > mercurial-scm > hg-stable
diff mercurial/context.py @ 28314:918b64c91e6c
changelog: backed out changeset 1778770e1982
We want to avoid leaking UTF-8 to main body of code wherever possible.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 02 Mar 2016 12:46:54 -0600 |
parents | 86de91c56355 |
children | 9e3f505b1d50 |
line wrap: on
line diff
--- a/mercurial/context.py Fri Jan 01 22:16:25 2016 +0900 +++ b/mercurial/context.py Wed Mar 02 12:46:54 2016 -0600 @@ -554,7 +554,7 @@ def files(self): return self._changeset[3] def description(self): - return encoding.tolocal(self._changeset[4]) + return self._changeset[4] def branch(self): return encoding.tolocal(self._changeset[5].get("branch")) def closesbranch(self):