Remove exception wrapper
It just causes problems
This commit is contained in:
parent
cd5ee8511e
commit
0c261c8313
13
main.py
13
main.py
@ -70,13 +70,10 @@ def loadResources(selfPath):
|
||||
if __name__ == '__main__':
|
||||
ensureDirExists(os.environ["HOME"] + "/.einstein")
|
||||
|
||||
try:
|
||||
loadResources(sys.argv[0])
|
||||
initScreen()
|
||||
initAudio()
|
||||
menu()
|
||||
getStorage().flush()
|
||||
except Exception as e:
|
||||
sys.stderr.write("ERROR: {0}".format(e))
|
||||
loadResources(sys.argv[0])
|
||||
initScreen()
|
||||
initAudio()
|
||||
menu()
|
||||
getStorage().flush()
|
||||
|
||||
# screen.doneCursors();
|
||||
|
Loading…
Reference in New Issue
Block a user