From 7ca911d3452706ae2e4f04914b9eb612ad564ab6 Mon Sep 17 00:00:00 2001 From: Brian Maddy Date: Fri, 16 Sep 2016 17:48:21 -0500 Subject: [PATCH] typo in stat.executable (was stat.excutable) (#4886) I didn't actually run this because it's so simple, but it seems correct. --- lib/ansible/modules/files/stat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/files/stat.py b/lib/ansible/modules/files/stat.py index 38ede211643..48979d73791 100644 --- a/lib/ansible/modules/files/stat.py +++ b/lib/ansible/modules/files/stat.py @@ -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):