changeset 14232 | df2399663392 |
parent 14231 | 8abe4db2d162 |
child 14233 | 659f34b833b9 |
--- a/mercurial/posix.py Fri May 06 15:19:48 2011 +0200 +++ b/mercurial/posix.py Fri May 06 15:22:31 2011 +0200 @@ -48,7 +48,7 @@ """check whether a file is executable""" return (os.lstat(f).st_mode & 0100 != 0) -def set_flags(f, l, x): +def setflags(f, l, x): s = os.lstat(f).st_mode if l: if not stat.S_ISLNK(s):