Skip to content

Commit

Permalink
fix(config.jinja): fix salt-lint errors
Browse files Browse the repository at this point in the history
```bash
Examining fail2ban/ng/files/config.jinja of type state
[206] Jinja variables should have spaces before and after: {{ var_name }}
fail2ban/ng/files/config.jinja:13
[{{section}}]
```
  • Loading branch information
myii committed Oct 9, 2019
1 parent 0f668ca commit ddbac67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fail2ban/ng/files/config.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{%- endmacro %}

{%- for section, section_data in config|dictsort %}
[{{section}}]
[{{ section }}]
{%- for name, value in section_data|dictsort %}
{{- print_config(name, value) }}
{%- endfor %}
Expand Down

0 comments on commit ddbac67

Please sign in to comment.