Output the full path to the exe as part of basic debug info

This commit is contained in:
Kovid Goyal 2024-02-05 08:05:35 +05:30
parent 496815f1b1
commit 95c28f6ab4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -171,6 +171,7 @@ def print_basic_debug_info(out=None):
except: except:
pass pass
out('Interface language:', str(set_translators.lang)) out('Interface language:', str(set_translators.lang))
out('EXE path:', sys.executable)
from calibre.customize.ui import has_external_plugins, initialized_plugins from calibre.customize.ui import has_external_plugins, initialized_plugins
if has_external_plugins(): if has_external_plugins():
from calibre.customize import PluginInstallationType from calibre.customize import PluginInstallationType