mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
typo in stat.executable (was stat.excutable) (#4886)
I didn't actually run this because it's so simple, but it seems correct.
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user