Skip to content

Commit

Permalink
Merge pull request #47922 from damon-atkins/2017.7_win_pkg_keys_fix
Browse files Browse the repository at this point in the history
win_pkg: pkg.refresh_db verbose=True PY3 compatibility fix
  • Loading branch information
Nicole Thomas committed Jun 5, 2018
2 parents 8008fca + 7129203 commit 3e91a31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/modules/win_pkg.py
Expand Up @@ -949,7 +949,7 @@ def _failed_compile(prefix_msg, error_msg):
else:
ret.setdefault('repo', {}).update(config)
ret.setdefault('name_map', {}).update(revmap)
successful_verbose[short_path_name] = config.keys()
successful_verbose[short_path_name] = list(config.keys())
elif config:
return _failed_compile('Compiled contents', 'not a dictionary/hash')
else:
Expand Down

0 comments on commit 3e91a31

Please sign in to comment.