##// END OF EJS Templates
store: sort the results of fncachestore.datafiles()
Bryan O'Sullivan -
r17373:4cbb1137 stable
parent child Browse files
Show More
@@ -398,7 +398,7 b' class fncachestore(basicstore):'
398 398 def datafiles(self):
399 399 rewrite = False
400 400 existing = []
401 for f in self.fncache:
401 for f in sorted(self.fncache):
402 402 ef = self.encode(f)
403 403 try:
404 404 yield f, ef, self.getsize(ef)
General Comments 0
You need to be logged in to leave comments. Login now