From 90dfabc64421fbc7b62e7e6b081b5a8a3f42ef9b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 17 Oct 2021 06:30:26 +0530 Subject: [PATCH] Use realpath() when reporting kitty_exe --- kitty/debug_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/debug_config.py b/kitty/debug_config.py index a36fc2081..dee927fdd 100644 --- a/kitty/debug_config.py +++ b/kitty/debug_config.py @@ -229,7 +229,7 @@ def debug_config(opts: KittyOpts) -> str: p('Running under:' + green('Wayland' if is_wayland() else 'X11')) p(green('Frozen:'), 'True' if getattr(sys, 'frozen', False) else 'False') p(green('Paths:')) - p(yellow(' kitty:'), kitty_exe()) + p(yellow(' kitty:'), os.path.realpath(kitty_exe())) p(yellow(' base dir:'), kitty_base_dir) p(yellow(' extensions dir:'), extensions_dir) p(yellow(' system shell:'), shell_path)