Fix bad lambda prototype in workingctx.fileflags()
authorPatrick Mezard <pmezard@gmail.com>
Sat, 06 Oct 2007 17:54:33 +0200
changeset 5399 18f8abefdb2a
parent 5398 ecde0b7e0b3f
child 5400 d9057f00d343
Fix bad lambda prototype in workingctx.fileflags()
mercurial/context.py
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -483,8 +483,8 @@ class workingctx(changectx):
         
         pnode = self._parents[0].changeset()[0]
         node, flag = self._repo.manifest.find(pnode, path)
-        is_link = util.linkfunc(self._repo.root, lambda: 'l' in flag)
-        is_exec = util.execfunc(self._repo.root, lambda: 'x' in flag)
+        is_link = util.linkfunc(self._repo.root, lambda p: 'l' in flag)
+        is_exec = util.execfunc(self._repo.root, lambda p: 'x' in flag)
         try:
             return (is_link(path) and 'l' or '') + (is_exec(path) and 'e' or '')
         except OSError: