Merge pull request #150 from Seldaek/patch-1

Remove sorting of php.ini files to support Python3
This commit is contained in:
Niels Abspoel 2018-10-21 22:03:52 +02:00 committed by GitHub
commit b2c82fa3b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@
{{ section }} = {{ settings }}
{%- else %}
[{{ section }}]
{%- for setting in settings|sort -%}
{%- for setting in settings -%}
{%- for key, value in setting.items() %}
{%- if value is number or value is string %}
{{ key }} = {{ value }}