mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix lint violations in stack.py
This commit is contained in:
parent
6a30fe6aeb
commit
b66b4bd060
1 changed files with 4 additions and 2 deletions
|
@ -382,7 +382,7 @@ from functools import partial
|
|||
from glob import glob
|
||||
|
||||
import yaml
|
||||
from jinja2 import FileSystemLoader, Environment, TemplateNotFound
|
||||
from jinja2 import FileSystemLoader, Environment
|
||||
|
||||
# Import Salt libs
|
||||
import salt.ext.six as six
|
||||
|
@ -427,7 +427,9 @@ def _process_stack_cfg(cfg, stack, minion_id, pillar):
|
|||
"__opts__": __opts__,
|
||||
"__salt__": __salt__,
|
||||
"__grains__": __grains__,
|
||||
"__stack__": { 'traverse': salt.utils.traverse_dict_and_list },
|
||||
"__stack__": {
|
||||
'traverse': salt.utils.traverse_dict_and_list
|
||||
},
|
||||
"minion_id": minion_id,
|
||||
"pillar": pillar,
|
||||
})
|
||||
|
|
Loading…
Add table
Reference in a new issue