Submitter | phabricator |
---|---|
Date | March 3, 2022, 9:23 p.m. |
Message ID | <differential-rev-PHID-DREV-nrnjq4x7vhk563lx4fmd-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/50666/ |
State | New |
Headers | show |
Comments
Patch
diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py --- a/mercurial/dirstate.py +++ b/mercurial/dirstate.py @@ -1308,9 +1308,9 @@ # - match.traversedir does something, because match.traversedir should # be called for every dir in the working dir full = listclean or match.traversedir is not None - for fn, st in pycompat.iteritems( - self.walk(match, subrepos, listunknown, listignored, full=full) - ): + for fn, st in self.walk( + match, subrepos, listunknown, listignored, full=full + ).items(): if not dcontains(fn): if (listignored or mexact(fn)) and dirignore(fn): if listignored: