mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
Backporting fix for issue #25223 on 2015.8 branch
This commit is contained in:
parent
6fe7ebd583
commit
331b27712c
@ -285,7 +285,9 @@ class SyncClientMixin(object):
|
||||
# Inject some useful globals to *all* the funciton's global
|
||||
# namespace only once per module-- not per func
|
||||
completed_funcs = []
|
||||
for mod_name in six.iterkeys(self.functions):
|
||||
_functions = copy.deepcopy(self.functions)
|
||||
|
||||
for mod_name in six.iterkeys(_functions):
|
||||
if '.' not in mod_name:
|
||||
continue
|
||||
mod, _ = mod_name.split('.', 1)
|
||||
|
Loading…
Reference in New Issue
Block a user