diff --git a/src/solo_turnier/html_parser.py b/src/solo_turnier/html_parser.py index 53077a7..c465aca 100644 --- a/src/solo_turnier/html_parser.py +++ b/src/solo_turnier/html_parser.py @@ -36,7 +36,7 @@ class HtmlParser: if title is None: title = self.getEventTitle() - match = re.compile('.*?ETW, Solos (.*?)(?: ".*")?').fullmatch(title) + match = re.compile('.*?OT, Solos (.*?)(?: ".*")?').fullmatch(title) if match is None: self.l.error('Cannot parse html title "%s". Possible bug?', title) raise Exception(f'Cannot parse title "{title}"')