From f87d0b3502910c4b96bdc55eb2a02e43a068c791 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 15 Sep 2017 13:13:41 -0400 Subject: [PATCH] typo fix --- 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 1591a773f3..f04f1c65e4 100644 --- a/lib/ansible/inventory/manager.py +++ b/lib/ansible/inventory/manager.py @@ -268,7 +268,7 @@ class InventoryManager(object): if not parsed and failures: # only if no plugin processed files should we show errors. if C.INVENTORY_UNPARSED_IS_FAILED: - msg = "Could not parse inventory source %s with availabel plugins:\n" % source + msg = "Could not parse inventory source %s with available plugins:\n" % source for fail in failures: msg += 'Plugin %s failed: %s\n' % (fail['plugin'], to_native(fail['exc'])) if display.verbosity >= 3: