From 01e7f44e0df4b11ddd8d6a5e32e249da4324901b Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 20 Apr 2018 11:21:45 -0400 Subject: [PATCH] fixy typo --- lib/ansible/plugins/inventory/script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/inventory/script.py b/lib/ansible/plugins/inventory/script.py index 342974dac2f..869f30cd7de 100644 --- a/lib/ansible/plugins/inventory/script.py +++ b/lib/ansible/plugins/inventory/script.py @@ -107,7 +107,7 @@ class InventoryModule(BaseInventoryPlugin, Cacheable): err = to_native(stderr or "") if err and not err.endswith('\n'): - err =+ '\n' + err += '\n' if sp.returncode != 0: raise AnsibleError("Inventory script (%s) had an execution error: %s " % (path, err))