mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
py3 compat
This commit is contained in:
parent
ff6b2a781f
commit
c933249d1a
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ def update(dest, upd, recursive_update=True):
|
|||
'''
|
||||
if dest is None:
|
||||
return upd
|
||||
if not (set(dest.keys()) & set(upd.keys())):
|
||||
if not (set(list(dest.keys())) & set(list(upd.keys()))):
|
||||
recursive_update = False
|
||||
if recursive_update:
|
||||
for key, val in six.iteritems(upd):
|
||||
|
|
Loading…
Add table
Reference in a new issue