From 1c5f62529521ccf64b4c62629ceb171e6314d6e9 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 3 Dec 2014 14:19:11 -0500 Subject: [PATCH] corrected exception name --- lib/ansible/runner/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/runner/__init__.py b/lib/ansible/runner/__init__.py index fad769c4ed..5ee79e609c 100644 --- a/lib/ansible/runner/__init__.py +++ b/lib/ansible/runner/__init__.py @@ -404,7 +404,7 @@ class Runner(object): host_vars = self.inventory.get_variables(host, vault_password=self.vault_pass) if 'ansible_ssh_user' in host_vars: thisuser = host_vars['ansible_ssh_user'] - except errors.AnsibleException, e: + except errors.AnsibleError, e: # the hostname was not found in the inventory, so # we just ignore this and try the next method pass