From 50637807fcb78c30497376339fc3f6445a0f85cc Mon Sep 17 00:00:00 2001 From: sean-m-sullivan Date: Tue, 1 Sep 2020 10:38:15 -0500 Subject: [PATCH] fixed typo --- awx_collection/plugins/module_utils/tower_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx_collection/plugins/module_utils/tower_api.py b/awx_collection/plugins/module_utils/tower_api.py index 78df3e7337..1bc76a84b1 100644 --- a/awx_collection/plugins/module_utils/tower_api.py +++ b/awx_collection/plugins/module_utils/tower_api.py @@ -599,7 +599,7 @@ class TowerAPIModule(TowerModule): if timeout and timeout < time.time() - start: # Account for Legacy messages if object_type is 'legacy_job_wait': - self.json_output['msg'] = 'Monitoring of Job - {1} aborted due to timeout'.format(object_name) + self.json_output['msg'] = 'Monitoring of Job - {0} aborted due to timeout'.format(object_name) else: self.json_output['msg'] = 'Monitoring of {0} - {1} aborted due to timeout'.format(object_type, object_name) self.wait_output(result)