##// END OF EJS Templates
branchcache: avoid created a `None` filter repoview when writing...
marmoute -
r52361:4188a057 default
parent child Browse files
Show More
@@ -168,7 +168,10 b' class BranchMapCache:'
168 168 unfi = repo.unfiltered()
169 169 for filtername, cache in self._per_filter.items():
170 170 if cache._delayed:
171 repo = unfi.filtered(filtername)
171 if filtername is None:
172 repo = unfi
173 else:
174 repo = unfi.filtered(filtername)
172 175 cache.write(repo)
173 176
174 177
General Comments 0
You need to be logged in to leave comments. Login now