mercurial/manifest.py
changeset 22942 03602f76deee
parent 22931 48c0b101a9de
child 22943 117e81871113
--- a/mercurial/manifest.py	Sun Oct 12 08:29:31 2014 -0700
+++ b/mercurial/manifest.py	Fri Oct 10 14:09:37 2014 -0400
@@ -21,7 +21,8 @@
         return self._flags.get(f, "")
     def withflags(self):
         return set(self._flags.keys())
-    def set(self, f, flags):
+    def setflag(self, f, flags):
+        """Set the flags (symlink, executable) for path f."""
         self._flags[f] = flags
     def copy(self):
         return manifestdict(self, dict.copy(self._flags))