##// END OF EJS Templates
manifest: use list(dict) instead of dict.keys() to get a list of keys...
Augie Fackler -
r36315:5245bac0 default
parent child Browse files
Show More
@@ -1019,7 +1019,7 b' class treemanifest(object):'
1019
1019
1020 # yield this dir's files and walk its submanifests
1020 # yield this dir's files and walk its submanifests
1021 self._load()
1021 self._load()
1022 for p in sorted(self._dirs.keys() + self._files.keys()):
1022 for p in sorted(list(self._dirs) + list(self._files)):
1023 if p in self._files:
1023 if p in self._files:
1024 fullp = self._subpath(p)
1024 fullp = self._subpath(p)
1025 if match(fullp):
1025 if match(fullp):
General Comments 0
You need to be logged in to leave comments. Login now