##// END OF EJS Templates
dirstate: fix _droppath() typo from 80605a8127e0
Patrick Mezard -
r6807:6d68edc3 default
parent child Browse files
Show More
@@ -338,7 +338,7 b' class dirstate(object):'
338 'forget a file'
338 'forget a file'
339 self._dirty = True
339 self._dirty = True
340 try:
340 try:
341 self._droppath('?')
341 self._droppath(f)
342 del self._map[f]
342 del self._map[f]
343 except KeyError:
343 except KeyError:
344 self._ui.warn(_("not in dirstate: %s\n") % f)
344 self._ui.warn(_("not in dirstate: %s\n") % f)
General Comments 0
You need to be logged in to leave comments. Login now