diff --git a/{{cookiecutter.out_dir}}/ios/exportOptions.plist b/{{cookiecutter.out_dir}}/ios/exportOptions.plist
index 8ba1827..fb63fc2 100644
--- a/{{cookiecutter.out_dir}}/ios/exportOptions.plist
+++ b/{{cookiecutter.out_dir}}/ios/exportOptions.plist
@@ -9,21 +9,20 @@
{{ cookiecutter.bundle_id }}
{{ cookiecutter.ios_provisioning_profile }}
-{% macro render_dict(d) %}
- {% for key, value in d.items() %}
- {{ key }}
- {% if value is string %}
- {{ value }}
- {% elif value is boolean %}
- <{{ "true" if value else "false" }}/>
- {% elif value is mapping %}
-
- {{ render_dict(value) }}
-
- {% endif %}
- {% endfor %}
-{% endmacro %}
-
+{% macro render_dict(d) -%}
+{% for key, value in d.items() -%}
+{{ key }}
+{% if value is string -%}
+{{ value }}
+{% elif value is boolean -%}
+<{{ "true" if value else "false" }}/>
+{% elif value is mapping -%}
+
+ {{ render_dict(value) }}
+
+{% endif -%}
+{% endfor -%}
+{% endmacro -%}
{{ render_dict(cookiecutter.ios_export_options) }}
\ No newline at end of file