Skip to content

Commit

Permalink
Merge pull request #25226 from nmadhok/client-runtime-fix-backport-20…
Browse files Browse the repository at this point in the history
…15-8

Backporting fix for issue #25223 on 2015.8 branch
  • Loading branch information
Mike Place committed Jul 8, 2015
2 parents 98e4fde + 02c4ef6 commit e6251e7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions salt/client/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,12 @@ def low(self, fun, low):
try:
verify_fun(self.functions, fun)

# Inject some useful globals to *all* the funciton's global
# Inject some useful globals to *all* the function'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)
Expand Down

0 comments on commit e6251e7

Please sign in to comment.