mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Do not catch SystemExit, so app will quit instead of starting Klondike.
This commit is contained in:
parent
7982ee6ea9
commit
20961880cb
1 changed files with 1 additions and 1 deletions
|
@ -516,7 +516,7 @@ class Application:
|
|||
self.nextgame.id, self.nextgame.random = 0, None
|
||||
try:
|
||||
self.runGame(id, random)
|
||||
except:
|
||||
except Exception:
|
||||
# try Klondike if current game fails
|
||||
if id == 2:
|
||||
raise # internal error?
|
||||
|
|
Loading…
Add table
Reference in a new issue