Skip to content

Commit

Permalink
include python version in crash logs (re issue #24)
Browse files Browse the repository at this point in the history
  • Loading branch information
robhagemans committed Dec 28, 2017
1 parent 35e5640 commit 7235c1f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pcbasic/basic/debug.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 '),
Expand Down

0 comments on commit 7235c1f

Please sign in to comment.