2 Commits

Author SHA1 Message Date
adrien 06fe72d8db Merge branch 'master' of https://git.malingrey.fr/adrien/TetrArcade 2019-10-02 15:44:02 +02:00
adrien 4a69c12349 no python2 2019-10-02 14:51:56 +02:00
+6 -6
View File
@@ -4,10 +4,7 @@ import locale
import time import time
import os import os
try: import configparser
import configparser
except ImportError:
import ConfigParser as configparser
try: try:
import arcade import arcade
@@ -482,8 +479,11 @@ High score could not be saved:
def main(): def main():
TetrArcade() try:
arcade.run() TetrArcade()
arcade.run()
except Exception as e:
sys.exit(e)
if __name__ == "__main__": if __name__ == "__main__":