diff options
Diffstat (limited to 'jfr_playoff')
-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): |