##// END OF EJS Templates
localrepo: forcibly copy list of filecache keys...
Augie Fackler -
r31510:2244fb3e default
parent child Browse files
Show More
@@ -1318,7 +1318,7 b' class localrepository(object):'
1318 1318 redundant one doesn't).
1319 1319 '''
1320 1320 unfiltered = self.unfiltered() # all file caches are stored unfiltered
1321 for k in self._filecache.keys():
1321 for k in list(self._filecache.keys()):
1322 1322 # dirstate is invalidated separately in invalidatedirstate()
1323 1323 if k == 'dirstate':
1324 1324 continue
General Comments 0
You need to be logged in to leave comments. Login now