1
0
mirror of https://github.com/avatao-content/baseimage-tutorial-framework synced 2025-04-07 16:42:40 +00:00

Make FSMBase.step() return an exit code

This commit is contained in:
Kristóf Tóth 2018-07-23 17:14:14 +02:00
parent 1a52ed2c9a
commit 8ba99d8e36

@ -62,5 +62,7 @@ class FSMBase(Machine, CallbackMixin):
try:
self.trigger(trigger)
self.trigger_history.append(trigger)
return True
except (AttributeError, MachineError):
LOG.debug('FSM failed to execute nonexistent trigger: "%s"', trigger)
return False