From 7c1c9b3d1065198667694d539844e1419dadb4b3 Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Tue, 3 Sep 2013 11:16:50 -0500 Subject: [PATCH] Fix message in utils related to python-keyczar and fireball/acc mode --- 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 63bdd3671cd..b5f1886d8d6 100644 --- a/lib/ansible/utils/__init__.py +++ b/lib/ansible/utils/__init__.py @@ -78,7 +78,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 mode") + raise errors.AnsibleError("python-keyczar must be installed to use fireball/accelerated mode") key_path = os.path.expanduser("~/.fireball.keys") if not os.path.exists(key_path):