From 72c122dff94c8892e97ce5b447bc1a250d8cc71d Mon Sep 17 00:00:00 2001 From: Ilija Matoski Date: Sat, 24 Apr 2021 14:34:19 +0200 Subject: [PATCH] added missing comma, to AWX execution_environets.py file --- roles/installer/templates/execution_environments.py.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/installer/templates/execution_environments.py.j2 b/roles/installer/templates/execution_environments.py.j2 index 31b17e42..b1a4d42f 100644 --- a/roles/installer/templates/execution_environments.py.j2 +++ b/roles/installer/templates/execution_environments.py.j2 @@ -1,5 +1,5 @@ DEFAULT_EXECUTION_ENVIRONMENTS = [ {% for item in tower_ee_images %} - {'name': '{{ item.name }}' , 'image': '{{ item.image }}'} + {'name': '{{ item.name }}' , 'image': '{{ item.image }}'}, {% endfor %} ]