diff --git a/src/solo_turnier/html_parser.py b/src/solo_turnier/html_parser.py index c465aca..01b990c 100644 --- a/src/solo_turnier/html_parser.py +++ b/src/solo_turnier/html_parser.py @@ -38,8 +38,8 @@ class HtmlParser: 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}"') + self.l.info('Cannot parse html title "%s". Is it a solo competition? Possible bug.', title) + raise Exception(f'Cannot parse title "{title}".') rest = match.group(1) rawGroup, rawClass, dance = rest.split(" ", 2)