From eab67372090a3e47849a98062a7c79f6b547b72a Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sun, 3 Nov 2013 12:47:07 -0500 Subject: [PATCH] Clarify a warning message. --- lib/ansible/utils/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/utils/__init__.py b/lib/ansible/utils/__init__.py index 5da1322c724..fa473601ac3 100644 --- a/lib/ansible/utils/__init__.py +++ b/lib/ansible/utils/__init__.py @@ -85,7 +85,7 @@ def key_for_hostname(hostname): # to use no persistent daemons or key management if not KEYCZAR_AVAILABLE: - raise errors.AnsibleError("python-keyczar must be installed to use fireball/accelerated mode") + raise errors.AnsibleError("python-keyczar must be installed on the control machine to use accelerated modes") key_path = os.path.expanduser("~/.fireball.keys") if not os.path.exists(key_path):