changeset 6807:6d68edc3217f

dirstate: fix _droppath() typo from 80605a8127e0
author Patrick Mezard <pmezard@gmail.com>
date Sun, 20 Jul 2008 19:08:59 +0200
parents c68f84448012
children 6a9025a667ae
files mercurial/dirstate.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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)