From f61635838ee3fb0b82f6d3817631e86bd4cf6f2e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 31 Jul 2024 14:58:21 +0530 Subject: [PATCH] old python compat --- kitty/notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/notifications.py b/kitty/notifications.py index 7bc748e71..b7864c13d 100644 --- a/kitty/notifications.py +++ b/kitty/notifications.py @@ -780,7 +780,7 @@ class NotificationManager: self.channel.focus(n.channel_id, n.activation_token) if n.report_requested: ident = n.identifier or '0' - self.channel.send(n.channel_id, f'99;i={ident};{which or ''}') + self.channel.send(n.channel_id, f'99;i={ident};{which or ""}') if n.on_activation: try: n.on_activation(n)