Merge pull request #244 from ilijamt/ee-conf-wrong

added missing comma, to AWX execution_environments.py file
This commit is contained in:
Shane McDonald
2021-04-24 11:58:41 -04:00
committed by GitHub

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