##// END OF EJS Templates
context: don't sort manifest entries...
Augie Fackler -
r24227:8ec2df32 default
parent child Browse files
Show More
@@ -66,8 +66,7 b' class basectx(object):'
66 return self.filectx(key)
66 return self.filectx(key)
67
67
68 def __iter__(self):
68 def __iter__(self):
69 for f in sorted(self._manifest):
69 return iter(self._manifest)
70 yield f
71
70
72 def _manifestmatches(self, match, s):
71 def _manifestmatches(self, match, s):
73 """generate a new manifest filtered by the match argument
72 """generate a new manifest filtered by the match argument
General Comments 0
You need to be logged in to leave comments. Login now