Make test runs behave better (#35708)

This commit is contained in:
C. R. Oldham 2016-08-23 14:15:48 -06:00 committed by Nicole Thomas
parent aee5b62542
commit 79bc01b88c

View file

@ -27,7 +27,7 @@ __proxyenabled__ = ['fx2']
try:
run_all = __salt__['cmd.run_all']
except NameError:
except (NameError, KeyError):
import salt.modules.cmdmod
__salt__ = {
'cmd.run_all': salt.modules.cmdmod._run_all_quiet