##// END OF EJS Templates
dirstate.invalidate: avoid rebuilding _map...
Alexis S. L. Carvalho -
r4953:6b3ed43f default
parent child Browse files
Show More
@@ -164,8 +164,8 b' class dirstate(object):'
164
164
165 def invalidate(self):
165 def invalidate(self):
166 for a in "_map _copymap _branch _pl _dirs _ignore".split():
166 for a in "_map _copymap _branch _pl _dirs _ignore".split():
167 if hasattr(self, a):
167 if a in self.__dict__:
168 self.__delattr__(a)
168 delattr(self, a)
169 self._dirty = 0
169 self._dirty = 0
170
170
171 def copy(self, source, dest):
171 def copy(self, source, dest):
General Comments 0
You need to be logged in to leave comments. Login now