Commit 38cc54b7 by James Cammarata

Make 'vars' a copy to prevent recursion issues

parent bddadc95
......@@ -243,7 +243,7 @@ class VariableManager:
# the 'omit' value alows params to be left out if the variable they are based on is undefined
all_vars['omit'] = self._omit_token
all_vars['vars'] = all_vars
all_vars['vars'] = all_vars.copy()
#CACHED_VARS[cache_entry] = all_vars
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment