Merge pull request #47922 from damon-atkins/2017.7_win_pkg_keys_fix

win_pkg: pkg.refresh_db verbose=True PY3 compatibility fix
This commit is contained in:
Nicole Thomas 2018-06-05 09:31:48 -04:00 committed by GitHub
commit 3e91a31134
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -949,7 +949,7 @@ def _repo_process_pkg_sls(filename, short_path_name, ret, successful_verbose):
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: