From 7235c1f03e48443ed189afce8c4aeefc2e826920 Mon Sep 17 00:00:00 2001 From: Rob Hagemans Date: Thu, 28 Dec 2017 20:03:43 +0000 Subject: [PATCH] include python version in crash logs (re issue #24) --- pcbasic/basic/debug.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pcbasic/basic/debug.py b/pcbasic/basic/debug.py index 34a4c7bab6..025333880b 100644 --- a/pcbasic/basic/debug.py +++ b/pcbasic/basic/debug.py @@ -135,6 +135,8 @@ def bluescreen(self, e): (0x70, 'EXCEPTION\n'), (0x17, 'version '), (0x1f, __version__), + (0x17, '\npython '), + (0x1f, platform.python_version()), (0x17, '\nplatform '), (0x1f, platform.platform()), (0x17, '\nstatement '),