mercurial/posix.py
changeset 14273 38af0f514134
parent 14272 adf5f4bdeaf6
child 14908 e2b5605501df
--- 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)