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}