Compare commits
2 Commits
2bd75be892
...
06fe72d8db
Author | SHA1 | Date | |
---|---|---|---|
06fe72d8db | |||
4a69c12349 |
@ -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__":
|
||||
|
Loading…
x
Reference in New Issue
Block a user