mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
abort on invalid command line game.
This commit is contained in:
parent
4cb94702f3
commit
cb25f39136
1 changed files with 2 additions and 0 deletions
|
@ -25,6 +25,7 @@
|
||||||
# imports
|
# imports
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
import sys
|
||||||
import traceback
|
import traceback
|
||||||
from pickle import UnpicklingError
|
from pickle import UnpicklingError
|
||||||
|
|
||||||
|
@ -487,6 +488,7 @@ class Application:
|
||||||
gameid = self.gdb.getGameByName(self.commandline.game)
|
gameid = self.gdb.getGameByName(self.commandline.game)
|
||||||
if gameid is None:
|
if gameid is None:
|
||||||
print_err(_("can't find game: ") + self.commandline.game)
|
print_err(_("can't find game: ") + self.commandline.game)
|
||||||
|
sys.exit(-1)
|
||||||
else:
|
else:
|
||||||
self.nextgame.id, self.nextgame.random = gameid, None
|
self.nextgame.id, self.nextgame.random = gameid, None
|
||||||
elif self.commandline.gameid is not None:
|
elif self.commandline.gameid is not None:
|
||||||
|
|
Loading…
Add table
Reference in a new issue