Skip to content

Commit

Permalink
Fix bug introduced in saltstack#58238 feature flag implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael "M3" Lasevich authored and Michael "M3" Lasevich committed Oct 16, 2020
1 parent b427688 commit 72d6521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/utils/templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def generate_sls_context(tmplpath, sls):
"""
if not features.get("enable_slsvars_fixes", False):
return _generate_sls_context_legacy(tmplpath, sls)
_generate_sls_context(tmplpath, sls)
return _generate_sls_context(tmplpath, sls)


def wrap_tmpl_func(render_str):
Expand Down

0 comments on commit 72d6521

Please sign in to comment.