Skip to content

Commit

Permalink
Merge pull request #55374 from silenius/issue_54448
Browse files Browse the repository at this point in the history
fix #54448
  • Loading branch information
dwoz authored Jan 2, 2020
2 parents 4ec6117 + 72166d5 commit 7ac44f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions salt/modules/zfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1145,8 +1145,8 @@ def set(*dataset, **kwargs):
res = __salt__['cmd.run_all'](
__utils__['zfs.zfs_command'](
command='set',
property_name=filesystem_properties.keys(),
property_value=filesystem_properties.values(),
property_name=list(filesystem_properties.keys()),
property_value=list(filesystem_properties.values()),
target=list(dataset),
),
python_shell=False,
Expand Down

0 comments on commit 7ac44f0

Please sign in to comment.