Submitter | phabricator |
---|---|
Date | March 2, 2018, 7:51 p.m. |
Message ID | <20d6d60736b4d8d33cf0b4125001c701@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/28711/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -1005,7 +1005,7 @@ ignore = repo.dirstate._ignore if not files: # Show all the patterns - ui.write("%s\n" % repr(ignore)) + ui.write("%s\n" % pycompat.byterepr(ignore)) else: m = scmutil.match(repo[None], pats=files) for f in m.files():