Submitter | Augie Fackler |
---|---|
Date | March 3, 2015, 11:05 p.m. |
Message ID | <4d339f4b677cf8890e9c.1425423936@198.17.16.172.in-addr.arpa> |
Download | mbox | patch |
Permalink | /patch/7888/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -66,8 +66,7 @@ class basectx(object): return self.filectx(key) def __iter__(self): - for f in sorted(self._manifest): - yield f + return iter(self._manifest) def _manifestmatches(self, match, s): """generate a new manifest filtered by the match argument