diff -r adf5f4bdeaf6 -r 38af0f514134 mercurial/posix.py --- a/mercurial/posix.py Sun May 08 20:42:28 2011 +0200 +++ b/mercurial/posix.py Sun May 08 20:45:47 2011 +0200 @@ -44,7 +44,7 @@ args = user and ("%s@%s" % (user, host)) or host return port and ("%s -p %s" % (args, port)) or args -def is_exec(f): +def isexec(f): """check whether a file is executable""" return (os.lstat(f).st_mode & 0100 != 0)