From ba65a913bc4ab5466af2c3913f9544a59b722722 Mon Sep 17 00:00:00 2001 From: Frank DeMarco Date: Sun, 11 Oct 2020 19:13:13 -0400 Subject: [PATCH] print python version at start up --- pgfw/Game.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pgfw/Game.py b/pgfw/Game.py index 8de78f8..4231fb0 100644 --- a/pgfw/Game.py +++ b/pgfw/Game.py @@ -1,4 +1,4 @@ -import os, pygame +import os, pygame, sys from pygame.locals import * from .Animation import Animation @@ -27,6 +27,7 @@ class Game(Animation): self.time_filter = TimeFilter(self) Animation.__init__(self, self) self.print_debug(pygame.version.ver) + print(sys.version_info) self.config_rel_path = config_rel_path self.type_declarations = type_declarations self.set_configuration()