Skip to content

Commit

Permalink
fix ##54448
Browse files Browse the repository at this point in the history
  • Loading branch information
silenius authored and dwoz committed Jan 1, 2020
1 parent 3730c20 commit 72166d5
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 72166d5

Please sign in to comment.