From 95c28f6ab4ce0c38dfed34cbabd3aef9ff2908ab Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 5 Feb 2024 08:05:35 +0530 Subject: [PATCH] Output the full path to the exe as part of basic debug info --- src/calibre/debug.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calibre/debug.py b/src/calibre/debug.py index 0b4d2b252e..f44c80e6dd 100644 --- a/src/calibre/debug.py +++ b/src/calibre/debug.py @@ -171,6 +171,7 @@ def print_basic_debug_info(out=None): except: pass out('Interface language:', str(set_translators.lang)) + out('EXE path:', sys.executable) from calibre.customize.ui import has_external_plugins, initialized_plugins if has_external_plugins(): from calibre.customize import PluginInstallationType