From 09093c8f3e0fe15124974d9deae62e9c2d70e06b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 30 May 2021 12:47:00 +0530 Subject: [PATCH] Cleanup PR --- kitty/utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kitty/utils.py b/kitty/utils.py index 76a52b9e5..014f55107 100644 --- a/kitty/utils.py +++ b/kitty/utils.py @@ -269,7 +269,9 @@ def init_startup_notification(window_handle: Optional[int], startup_id: Optional except OSError as e: if not str(e).startswith("Failed to load libstartup-notification"): raise e - log_error("{}. This has two main effects: you won't get a loading cursor when kitty is starting up, and kitty windows may appear under wrong X11 workspace.".format(str(e))) + log_error( + f'{e}. This has two main effects:', + 'There will be no startup feedback and when using --single-instance, kitty windows may start on an incorrect desktop/workspace.') except Exception: import traceback traceback.print_exc()