Skip to content

Commit

Permalink
fix(grafana.ini.jinja): fix salt-lint errors
Browse files Browse the repository at this point in the history
```bash
Examining grafana/files/default/grafana.ini.jinja of type state
[206] Jinja variables should have spaces before and after: {{ var_name }}
grafana/files/default/grafana.ini.jinja:15
[{{section}}]
```
  • Loading branch information
myii committed Oct 9, 2019
1 parent dcb6ed7 commit 909a3e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grafana/files/default/grafana.ini.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
{{ render_key_value_pairs(config.get("default", {})) }}
{% for section, cfg in config.items() %}
{%- if section == "default" %}{% continue %}{% endif %}
[{{section}}]
[{{ section }}]
{{ render_key_value_pairs(cfg) }}
{% endfor %}

0 comments on commit 909a3e6

Please sign in to comment.