Show More
@@ -1318,7 +1318,7 class localrepository(object): | |||||
1318 | redundant one doesn't). |
|
1318 | redundant one doesn't). | |
1319 | ''' |
|
1319 | ''' | |
1320 | unfiltered = self.unfiltered() # all file caches are stored unfiltered |
|
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 | # dirstate is invalidated separately in invalidatedirstate() |
|
1322 | # dirstate is invalidated separately in invalidatedirstate() | |
1323 | if k == 'dirstate': |
|
1323 | if k == 'dirstate': | |
1324 | continue |
|
1324 | continue |
General Comments 0
You need to be logged in to leave comments.
Login now