diff options
author | emkael <emkael@tlen.pl> | 2018-02-17 14:09:57 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2018-02-17 14:09:57 +0100 |
commit | 3597b34fd1befdeeeba06f8b36908430daf23194 (patch) | |
tree | e9496b3d317756a655b3fefce75e35fe03cf80cc | |
parent | 088cb333bfb9b9427d6d4eeca6e8e57caa3b6c94 (diff) |
Unconfigured match database should also fall back to config info
-rw-r--r-- | jfr_playoff/matchinfo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jfr_playoff/matchinfo.py b/jfr_playoff/matchinfo.py index ba4a29f..7141113 100644 --- a/jfr_playoff/matchinfo.py +++ b/jfr_playoff/matchinfo.py @@ -125,7 +125,7 @@ class MatchInfo: if not teams_fetched: try: self.info.teams = self.__get_db_teams(self.info.teams, not scores_fetched) - except (mysql.connector.Error, TypeError, IndexError): + except (mysql.connector.Error, TypeError, IndexError, KeyError): self.info.teams = self.__get_config_teams(self.info.teams) def __get_db_board_count(self): |