diff options
Diffstat (limited to 'helpers/action.py')
-rw-r--r-- | helpers/action.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/helpers/action.py b/helpers/action.py index 6ac47b1..4b5a71d 100644 --- a/helpers/action.py +++ b/helpers/action.py | |||
@@ -80,10 +80,11 @@ class Action: | |||
80 | error_print("Unknown action {}".format(self.action)) | 80 | error_print("Unknown action {}".format(self.action)) |
81 | self.fail() | 81 | self.fail() |
82 | 82 | ||
83 | def on_enter_loaded_running(self): | 83 | def on_enter_loaded_running(self, key_start_time): |
84 | debug_print(self.description()) | 84 | debug_print(self.description()) |
85 | if hasattr(actions, self.action): | 85 | if hasattr(actions, self.action): |
86 | getattr(actions, self.action).run(self, **self.arguments) | 86 | getattr(actions, self.action).run(self, |
87 | key_start_time=key_start_time, **self.arguments) | ||
87 | 88 | ||
88 | def poll_loaded(self): | 89 | def poll_loaded(self): |
89 | self.key.callback_action_ready(self, | 90 | self.key.callback_action_ready(self, |