Submitter | Augie Fackler |
---|---|
Date | Jan. 12, 2015, 8:04 p.m. |
Message ID | <69278200bc1a32278b68.1421093089@augie-macbookair2.roam.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/7441/ |
State | Superseded |
Commit | 8ec2df32bd39aa74d77d6b094b7c15ba5236ed81 |
Headers | show |
Comments
Patch
diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -101,8 +101,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