Skip to content

Commit cfe9704

Browse files
committed
client: don't upload empty standings in DOMjudge scraper
1 parent c32d238 commit cfe9704

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

client/livecli/scrapers/domjudge.py

+4
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,10 @@ def scrape_impl(self, html: str) -> dict:
123123
'penalty': penalty,
124124
'problems': team_problems,
125125
})
126+
127+
if len(standings['entries']) == 0 or len(standings['problems']) == 0:
128+
raise Exception('Scoreboard is empty.')
129+
126130
return standings
127131

128132
def login(self, session: requests.Session) -> None:

0 commit comments

Comments
 (0)