瀏覽代碼

fix iteritems() with items()

master
Niels Abspoel 7 年之前
父節點
當前提交
e2973c644d
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      salt/map.jinja

+ 1
- 1
salt/map.jinja 查看文件

@@ -5,7 +5,7 @@
{#- This whole `'dict' in x.__class__.__name__` mess is a
workaround for the missing mapping test in CentOS 6's
ancient Jinja2, see #193 #}
{%- for k,v in b.iteritems() %}
{%- for k,v in b.items() %}
{%- if v is string or v is number %}
{%- do a.update({ k: v }) %}
{%- elif 'dict' not in v.__class__.__name__ %}

Loading…
取消
儲存