mercurial/manifest.py
changeset 9416 eecbaac5ca88
parent 9415 e0cc9fa2a576
child 9420 d0db168136dc
--- a/mercurial/manifest.py	Wed Sep 02 21:05:43 2009 +0200
+++ b/mercurial/manifest.py	Thu Sep 03 02:42:56 2009 +0200
@@ -20,7 +20,7 @@
     def set(self, f, flags):
         self._flags[f] = flags
     def copy(self):
-        return manifestdict(dict.copy(self), dict.copy(self._flags))
+        return manifestdict(self, dict.copy(self._flags))
 
 class manifest(revlog.revlog):
     def __init__(self, opener):