Преглед изворни кода

Merge pull request #330 from aboe76/fix_deprecated_iteritems

fix #296 deprecated iteritems() and replace it with items()
tags/v0.57.0
Niels Abspoel пре 7 година
родитељ
комит
228f74b660
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…
Откажи
Сачувај