##// END OF EJS Templates
dirstate: remove file from copymap on drop...
Mateusz Kwapich -
r29247:3e438497 default
parent child Browse files
Show More
@@ -582,6 +582,8 class dirstate(object):
582 582 del self._map[f]
583 583 if f in self._nonnormalset:
584 584 self._nonnormalset.remove(f)
585 if f in self._copymap:
586 del self._copymap[f]
585 587
586 588 def _discoverpath(self, path, normed, ignoremissing, exists, storemap):
587 589 if exists is None:
General Comments 0
You need to be logged in to leave comments. Login now