Compare commits

..

2 Commits

Author SHA1 Message Date
06fe72d8db Merge branch 'master' of https://git.malingrey.fr/adrien/TetrArcade 2019-10-02 15:44:02 +02:00
4a69c12349 no python2 2019-10-02 14:51:56 +02:00

View File

@ -4,10 +4,7 @@ import locale
import time
import os
try:
import configparser
except ImportError:
import ConfigParser as configparser
import configparser
try:
import arcade
@ -482,8 +479,11 @@ High score could not be saved:
def main():
TetrArcade()
arcade.run()
try:
TetrArcade()
arcade.run()
except Exception as e:
sys.exit(e)
if __name__ == "__main__":