Submitter | phabricator |
---|---|
Date | Feb. 26, 2018, 9:17 p.m. |
Message ID | <7357e96a0a7230ee24cb12b6b76c6f93@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/28425/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/wireproto.py b/mercurial/wireproto.py --- a/mercurial/wireproto.py +++ b/mercurial/wireproto.py @@ -916,7 +916,7 @@ @wireprotocommand('listkeys', 'namespace') def listkeys(repo, proto, namespace): - d = repo.listkeys(encoding.tolocal(namespace)).items() + d = sorted(repo.listkeys(encoding.tolocal(namespace)).items()) return bytesresponse(pushkeymod.encodekeys(d)) @wireprotocommand('lookup', 'key')