Fix error in failure checking for salt.state within orchestration

This commit is contained in:
Colton Myers 2015-12-10 12:22:17 -07:00
parent 08dd663a27
commit 501f91a388

View file

@ -248,7 +248,7 @@ def state(
m_ret = mdata['ret']
except KeyError:
m_state = False
if not m_state:
if m_state:
m_state = salt.utils.check_state_result(m_ret)
if not m_state: