From 5478c5f2fb37c4473a4c8a91d359e8598124d272 Mon Sep 17 00:00:00 2001 From: sean-m-sullivan Date: Wed, 2 Sep 2020 08:30:09 -0500 Subject: [PATCH] linting --- awx_collection/plugins/modules/tower_project_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx_collection/plugins/modules/tower_project_update.py b/awx_collection/plugins/modules/tower_project_update.py index 3586a27340..cc32446d65 100644 --- a/awx_collection/plugins/modules/tower_project_update.py +++ b/awx_collection/plugins/modules/tower_project_update.py @@ -106,7 +106,7 @@ def main(): if name.isdigit(): results = module.get_endpoint('projects', **{'data': {'id': name}}) if results['json']['count'] == 0: - module.fail_json(msg='Could not find Project with ID: {0}'.format(name)) + module.fail_json(msg='Could not find Project with ID: {0}'.format(name)) project = results['json']['results'][0] else: lookup_data = {'name': name}