Submitter | phabricator |
---|---|
Date | Feb. 18, 2018, 4:30 p.m. |
Message ID | <2a2325e17c2d601758c1d3bbaf99f927@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/28113/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/manifest.py b/mercurial/manifest.py --- a/mercurial/manifest.py +++ b/mercurial/manifest.py @@ -1019,7 +1019,7 @@ # yield this dir's files and walk its submanifests self._load() - for p in sorted(self._dirs.keys() + self._files.keys()): + for p in sorted(list(self._dirs) + list(self._files)): if p in self._files: fullp = self._subpath(p) if match(fullp):