dirstate: fix _droppath() typo from be348d0dd417

This commit is contained in:
Patrick Mezard 2008-07-20 19:08:59 +02:00
parent 2ff2e83963
commit 37536c33c2

View File

@ -338,7 +338,7 @@ class dirstate(object):
'forget a file'
self._dirty = True
try:
self._droppath('?')
self._droppath(f)
del self._map[f]
except KeyError:
self._ui.warn(_("not in dirstate: %s\n") % f)