Fix include statements in the Python template
diff --git a/collectd/files/collectd_python.conf b/collectd/files/collectd_python.conf
index 7a279e7..4d7cef8 100644
--- a/collectd/files/collectd_python.conf
+++ b/collectd/files/collectd_python.conf
@@ -10,14 +10,14 @@
{%- for plugin_name, plugin in local_plugin.iteritems() %}
{%- if plugin.get('plugin', 'native') == 'python' %}
- {%- include plugin.template %}
+ {% include plugin.template %}
{%- endif %}
{%- endfor %}
{%- if client.remote_collector %}
{%- for plugin_name, plugin in remote_plugin.iteritems() %}
{%- if plugin.get('plugin', 'native') == 'python' %}
- {%- include plugin.template %}
+ {% include plugin.template %}
{%- endif %}
{%- endfor %}
{%- endif %}