1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Do not catch exceptions too broadly in mainloop

StopIteration seems to be the expected way to stop, at least
for the tk and tile interfaces.
This commit is contained in:
Juhani Numminen 2020-02-09 22:07:16 +02:00
parent 00f6f70e93
commit 032b645e0f

View file

@ -183,7 +183,7 @@ class Application:
try:
approc = self.mainproc() # setup process
approc.send(None) # and go
except Exception:
except StopIteration:
pass
def gameproc(self):