From 99f9f49ecafe3634652282139b4659e855ad8373 Mon Sep 17 00:00:00 2001 From: Paul Gear Date: Fri, 7 Jun 2019 05:05:01 +1000 Subject: [PATCH] Correct grammar (#57385) "it's" == "it is" "its" == "belonging to it" --- lib/ansible/inventory/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/inventory/manager.py b/lib/ansible/inventory/manager.py index 6bd804bc550..9e9f20808fc 100644 --- a/lib/ansible/inventory/manager.py +++ b/lib/ansible/inventory/manager.py @@ -280,7 +280,7 @@ class InventoryManager(object): tb = ''.join(traceback.format_tb(sys.exc_info()[2])) failures.append({'src': source, 'plugin': plugin_name, 'exc': AnsibleError(e), 'tb': tb}) else: - display.vvv("%s declined parsing %s as it did not pass it's verify_file() method" % (plugin_name, source)) + display.vvv("%s declined parsing %s as it did not pass its verify_file() method" % (plugin_name, source)) else: if not parsed and failures: # only if no plugin processed files should we show errors.