diff -r adf5f4bdeaf6 -r 38af0f514134 mercurial/dirstate.py --- a/mercurial/dirstate.py Sun May 08 20:42:28 2011 +0200 +++ b/mercurial/dirstate.py Sun May 08 20:45:47 2011 +0200 @@ -138,7 +138,7 @@ p = self._join(x) if os.path.islink(p): return 'l' - if util.is_exec(p): + if util.isexec(p): return 'x' return '' return f @@ -153,7 +153,7 @@ def f(x): if 'l' in fallback(x): return 'l' - if util.is_exec(self._join(x)): + if util.isexec(self._join(x)): return 'x' return '' return f