diff mercurial/dirstate.py @ 6807:6d68edc3217f

dirstate: fix _droppath() typo from 80605a8127e0
author Patrick Mezard <pmezard@gmail.com>
date Sun, 20 Jul 2008 19:08:59 +0200
parents 80605a8127e0
children 70ecce68df7c
line wrap: on
line diff
--- a/mercurial/dirstate.py	Fri Jul 11 18:46:02 2008 -0500
+++ b/mercurial/dirstate.py	Sun Jul 20 19:08:59 2008 +0200
@@ -338,7 +338,7 @@
         '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)