Compare commits

..

No commits in common. "06fe72d8dbf3ac5092fd112c5ca1d13de737b966" and "2bd75be892c4fded5c29c07f8a646bc75f312c91" have entirely different histories.

View File

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