added missing comma, to AWX execution_environets.py file

This commit is contained in:
Ilija Matoski
2021-04-24 14:34:19 +02:00
parent 3e8834e057
commit 72c122dff9

View File

@@ -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 %}
]