typo in stat.executable (was stat.excutable) (#4886)

I didn't actually run this because it's so simple, but it seems correct.
reviewable/pr18780/r1
Brian Maddy 9 years ago committed by Brian Coca
parent 922aed148d
commit 3b0bc3e79e

@ -369,7 +369,7 @@ def format_output(module, path, st, follow, get_md5, get_checksum,
isgid=bool(mode & stat.S_ISGID),
readable=os.access(path, os.R_OK),
writeable=os.access(path, os.W_OK),
excutable=os.access(path, os.X_OK),
executable=os.access(path, os.X_OK),
)
if stat.S_ISLNK(mode):

Loading…
Cancel
Save