Show More
@@ -370,9 +370,10 class dirstate(object): | |||
|
370 | 370 | |
|
371 | 371 | def drop(self, f): |
|
372 | 372 | '''Drop a file from the dirstate''' |
|
373 | self._dirty = True | |
|
374 |
self._d |
|
|
375 |
|
|
|
373 | if f in self._map: | |
|
374 | self._dirty = True | |
|
375 | self._droppath(f) | |
|
376 | del self._map[f] | |
|
376 | 377 | |
|
377 | 378 | def _normalize(self, path, isknown): |
|
378 | 379 | normed = os.path.normcase(path) |
General Comments 0
You need to be logged in to leave comments.
Login now