Fix outputter for state.apply

Because of an incorrectly configured ``__outputter__`` dunder dict,
``state.apply`` was falling back to the nested outputter. This corrects
the configuration, allowing ``state.apply`` to use the highstate
outputter as intended.
This commit is contained in:
Erik Johnson 2016-03-22 11:59:23 -05:00
parent 0e66f678d4
commit 7d7cb45565

View file

@ -43,7 +43,7 @@ __outputter__ = {
'highstate': 'highstate',
'template': 'highstate',
'template_str': 'highstate',
'apply': 'highstate',
'apply_': 'highstate',
'request': 'highstate',
'check_request': 'highstate',
'run_request': 'highstate',