From c1df007d6c70295cbbc7c490d866ad2e0c352ef1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Wed, 28 Aug 2019 16:34:55 +0200 Subject: [PATCH] Fix refactored method name --- tfw/components/fsm/fsm_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tfw/components/fsm/fsm_handler.py b/tfw/components/fsm/fsm_handler.py index 02337ad..729a794 100644 --- a/tfw/components/fsm/fsm_handler.py +++ b/tfw/components/fsm/fsm_handler.py @@ -18,7 +18,7 @@ class FSMHandler: self.auth_key = KeyManager().auth_key self.command_handlers = { - 'fsm.trigger': self.handle_step, + 'fsm.trigger': self.handle_trigger, 'fsm.update' : self.handle_update }