print python version at start up

This commit is contained in:
Frank DeMarco 2020-10-11 19:13:13 -04:00
parent 5f2b26852e
commit ba65a913bc
1 changed files with 2 additions and 1 deletions

View File

@ -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()