Merge pull request #296 from sticky-note/fix/pwd

fix(macros): fix `format_kwargs` macro
This commit is contained in:
Imran Iqbal 2020-07-27 02:18:48 +01:00 committed by GitHub
commit 21baf28b2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@
{%- filter indent(4) %}
{%- for k, v in kwarg|dictsort() %}
- {{ k }}: {{ v }}
- {{ k }}: {{ v|yaml_dquote if v is string else v }}
{%- endfor %}
{%- endfilter %}