summaryrefslogtreecommitdiff
path: root/swiftstory/GameManager.py
diff options
context:
space:
mode:
authorOlivier Gayot <olivier.gayot@sigexec.com>2020-11-01 23:31:08 +0100
committerOlivier Gayot <olivier.gayot@sigexec.com>2020-11-01 23:47:25 +0100
commitbb062fcd972fb0a281fcdd743647f22d0852e737 (patch)
tree51b7f8346110172284d324f6a0f6a3a24ad73459 /swiftstory/GameManager.py
parent0fca30bbdac79d8d33e152e7e7116c5ffa1356ca (diff)
Add UnsupportedLanguage exception
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
Diffstat (limited to 'swiftstory/GameManager.py')
-rw-r--r--swiftstory/GameManager.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/swiftstory/GameManager.py b/swiftstory/GameManager.py
index a7098bc..52ce554 100644
--- a/swiftstory/GameManager.py
+++ b/swiftstory/GameManager.py
@@ -1,6 +1,7 @@
import logging
import os
+from swiftstory.exception import UnsupportedLanguage
from swiftstory.Game import Game
from swiftstory.Cards import Cards
@@ -20,7 +21,7 @@ class GameManager:
def join_game(self, game_name, lang):
if self.langs.get(lang) is None:
- return None
+ raise UnsupportedLanguage(lang)
games = self.langs[lang]['games']
black_cards = self.langs[lang]['black_cards']