Skip to content

Commit

Permalink
Merge pull request saltstack-formulas#36 from aboe76/python3_support
Browse files Browse the repository at this point in the history
fix iteritems python3
  • Loading branch information
javierbertoli authored Mar 10, 2018
2 parents 2a42518 + 144d3bb commit 7874fc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apt/preferences.sls
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
- group: root
- clean: {{ clean_preferences_d }}
{% for pref_file, args in preferences.iteritems() %}
{% for pref_file, args in preferences.items() %}
{%- set p_package = args.package if args.package is defined else '*' %}
{{ preferences_dir }}/{{ pref_file }}:
Expand Down
2 changes: 1 addition & 1 deletion apt/repositories.sls
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
{% for repo, args in repositories.iteritems() %}
{% for repo, args in repositories.items() %}
{% set r_opts = '' %}
{%- set r_arch = 'arch=' ~ args.arch|join(',') if args.arch is defined else '' %}
Expand Down

0 comments on commit 7874fc4

Please sign in to comment.