From 7b4ce9e4aee8f2d131ea0176456054b3ecbd4002 Mon Sep 17 00:00:00 2001 From: UNR Information Security <40803249+unrinfosec@users.noreply.github.com> Date: Tue, 23 Jul 2019 11:51:56 -0700 Subject: [PATCH] Update find.py (#59456) Return values for `matched` and `examined` in the find module are integers and not strings. --- lib/ansible/modules/files/find.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/files/find.py b/lib/ansible/modules/files/find.py index c0b605d899d..ade80385af2 100644 --- a/lib/ansible/modules/files/find.py +++ b/lib/ansible/modules/files/find.py @@ -201,12 +201,12 @@ files: matched: description: Number of matches returned: success - type: str + type: int sample: 14 examined: description: Number of filesystem objects looked at returned: success - type: str + type: int sample: 34 '''