Submitter | Augie Fackler |
---|---|
Date | March 19, 2017, 6:26 p.m. |
Message ID | <3e3eff548aecf281d22c.1489947983@imladris.local> |
Download | mbox | patch |
Permalink | /patch/19458/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py --- a/mercurial/localrepo.py +++ b/mercurial/localrepo.py @@ -1318,7 +1318,7 @@ class localrepository(object): redundant one doesn't). ''' unfiltered = self.unfiltered() # all file caches are stored unfiltered - for k in self._filecache.keys(): + for k in list(self._filecache.keys()): # dirstate is invalidated separately in invalidatedirstate() if k == 'dirstate': continue