diff mercurial/hg.py @ 657:22bc6fb9aefc

dirstate.forget() takes a list -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 dirstate.forget() takes a list manifest hash: e444474a5ac76d3562ee8c0211e1a88ec53155ef -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFC0WO+ywK+sNU5EO8RAlmYAJ9pcSgpvvuqLzfUkeApXZyOb3j6pQCgi9Te e8ZI236WNWfyrwEASxFIeLM= =yDVZ -----END PGP SIGNATURE-----
author Matt Mackall <mpm@selenic.com>
date Sun, 10 Jul 2005 10:06:54 -0800
parents 147d2fa2d766
children f8098ae9f5b6
line wrap: on
line diff
--- a/mercurial/hg.py	Sat Jul 09 18:11:54 2005 -0800
+++ b/mercurial/hg.py	Sun Jul 10 10:06:54 2005 -0800
@@ -897,7 +897,7 @@
                 self.ui.warn("%s still exists!\n" % f)
             elif self.dirstate.state(f) == 'a':
                 self.ui.warn("%s never committed!\n" % f)
-                self.dirstate.forget(f)
+                self.dirstate.forget([f])
             elif f not in self.dirstate:
                 self.ui.warn("%s not tracked!\n" % f)
             else: