Avoid issue with rounds that contain all previous participants

This commit is contained in:
Christian Wolf 2023-11-08 20:00:01 +01:00
parent 366f496ba3
commit aaa311ee03

View File

@ -57,6 +57,9 @@ class HtmlParser:
if len(tds) != 2:
return
if tds[1].contents[0].startswith('Alle Starter weiter genommen.'):
self.l.info('No excluded starters found.')
return
regex = re.compile('(.*) \\(([0-9]+)\\)')
place = tds[0].contents[0]