From af7a104f5b2d82f8ab48d3fcf0524b0281723eb1 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 1 Dec 2021 10:39:02 +0530 Subject: [PATCH] Fix typo causing actions to be run multiple times with combine --- kitty/boss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/boss.py b/kitty/boss.py index ca16b855e..809a9a618 100755 --- a/kitty/boss.py +++ b/kitty/boss.py @@ -1141,7 +1141,7 @@ class Boss: traceback.print_exc() self.show_error('Failed to parse action', f'{action_definition}\n{e}') return True - for action in actions: + if actions: try: if self.dispatch_action(actions[0], window_for_dispatch, dispatch_type): consumed = True