From bf5479f6ba14beb55ea34bd8c6be77db84d1bfb7 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 8 Dec 2016 14:06:04 -0500 Subject: [PATCH] Tweak comment --- awx/api/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/api/views.py b/awx/api/views.py index 6e0a730472..b82cb424d6 100644 --- a/awx/api/views.py +++ b/awx/api/views.py @@ -2561,7 +2561,7 @@ class JobTemplateCallback(GenericAPIView): return set([hosts.get(name__in=remote_hosts)]) except (Host.DoesNotExist, Host.MultipleObjectsReturned): pass - # Next, try matching based on name or ansible_ssh_host variable. + # Next, try matching based on name or ansible_host variables. matches = set() for host in hosts: for host_var in ['ansible_ssh_host', 'ansible_host']: