From 98f240d6cd1be2be854e11e7eb244ea4a09ee8d7 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 2 Jun 2023 21:47:04 +0000 Subject: [PATCH] commands: version_info: include python version/path --- electrum/commands.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/electrum/commands.py b/electrum/commands.py index 336e69a47..4dfa7db6b 100644 --- a/electrum/commands.py +++ b/electrum/commands.py @@ -585,6 +585,8 @@ class Commands: ret = { "electrum.version": ELECTRUM_VERSION, "electrum.path": os.path.dirname(os.path.realpath(__file__)), + "python.version": sys.version, + "python.path": sys.executable, } # add currently running GUI if self.daemon and self.daemon.gui_object: