mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix Python3 and pylint issue
This commit is contained in:
parent
726ca3044d
commit
1476ace558
1 changed files with 2 additions and 1 deletions
|
@ -538,8 +538,9 @@ def _get_result(func_ret, changes):
|
|||
|
||||
return res
|
||||
|
||||
|
||||
def _get_result_in_depth(node):
|
||||
for key, val in node.iteritems():
|
||||
for key, val in six.iteritems(node):
|
||||
if key == 'result' and val is False:
|
||||
return False
|
||||
elif isinstance(val, dict):
|
||||
|
|
Loading…
Add table
Reference in a new issue