##// END OF EJS Templates
dirstate: remove pycompat.iteritems()...
Gregory Szorc -
r49777:fe056166 default
parent child Browse files
Show More
@@ -1308,9 +1308,9 b' class dirstate(object):'
1308 # - match.traversedir does something, because match.traversedir should
1308 # - match.traversedir does something, because match.traversedir should
1309 # be called for every dir in the working dir
1309 # be called for every dir in the working dir
1310 full = listclean or match.traversedir is not None
1310 full = listclean or match.traversedir is not None
1311 for fn, st in pycompat.iteritems(
1311 for fn, st in self.walk(
1312 self.walk(match, subrepos, listunknown, listignored, full=full)
1312 match, subrepos, listunknown, listignored, full=full
1313 ):
1313 ).items():
1314 if not dcontains(fn):
1314 if not dcontains(fn):
1315 if (listignored or mexact(fn)) and dirignore(fn):
1315 if (listignored or mexact(fn)) and dirignore(fn):
1316 if listignored:
1316 if listignored:
General Comments 0
You need to be logged in to leave comments. Login now