1
0
Fork 0
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:
Shlomi Fish 2019-04-29 14:24:21 +03:00
parent 4cb94702f3
commit cb25f39136

View file

@ -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: