mercurial/context.py
changeset 3218 8d4855fd9d7b
parent 3217 6d98149d70fe
child 3241 a184cd0c2db9
--- a/mercurial/context.py	Mon Oct 02 22:03:14 2006 -0500
+++ b/mercurial/context.py	Tue Oct 03 01:21:46 2006 -0500
@@ -342,7 +342,7 @@
     def _buildmanifest(self):
         """generate a manifest corresponding to the working directory"""
 
-        man = self._parents[0].manifest().coy()
+        man = self._parents[0].manifest().copy()
         copied = self._repo.dirstate.copies()
         modified, added, removed, deleted, unknown = self._status[:5]
         for i,l in (("a", added), ("m", modified), ("u", unknown)):