From 5d4e872bf4e7067eee43378ca04eaa21d4297ced Mon Sep 17 00:00:00 2001 From: Hao Liu Date: Mon, 6 Feb 2023 15:49:57 -0500 Subject: [PATCH] fix make black error --- awx_collection/plugins/modules/project_update.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/awx_collection/plugins/modules/project_update.py b/awx_collection/plugins/modules/project_update.py index 6cbcd39b6d..9d5a8841a7 100644 --- a/awx_collection/plugins/modules/project_update.py +++ b/awx_collection/plugins/modules/project_update.py @@ -116,8 +116,7 @@ def main(): if result['status_code'] == 405: module.fail_json( - msg="Unable to trigger a project update because the project scm_type ({0}) does not support it.".format(project['scm_type']), - response=result + msg="Unable to trigger a project update because the project scm_type ({0}) does not support it.".format(project['scm_type']), response=result ) elif result['status_code'] != 202: module.fail_json(msg="Failed to update project, see response for details", response=result)