##// END OF EJS Templates
branchcache: don't verify all nodes while writing...
Pulkit Goyal -
r42361:07faf5c6 stable
parent child Browse files
Show More
@@ -341,7 +341,7 b' class branchcache(object):'
341 cachekey.append(hex(self.filteredhash))
341 cachekey.append(hex(self.filteredhash))
342 f.write(" ".join(cachekey) + '\n')
342 f.write(" ".join(cachekey) + '\n')
343 nodecount = 0
343 nodecount = 0
344 for label, nodes in sorted(self.iteritems()):
344 for label, nodes in sorted(self._entries.iteritems()):
345 label = encoding.fromlocal(label)
345 label = encoding.fromlocal(label)
346 for node in nodes:
346 for node in nodes:
347 nodecount += 1
347 nodecount += 1
General Comments 0
You need to be logged in to leave comments. Login now