Skip to content

Commit

Permalink
MI: Events: Fix for empty location (#5145)
Browse files Browse the repository at this point in the history
  • Loading branch information
showerst authored Dec 19, 2024
1 parent d66aee3 commit 6c77852
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scrapers/mi/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ def scrape_event_page(self, url) -> Generator[Event]:
chair = chair.split(".")[-1].strip()

where = self.table_cell("Location")
if where == "":
where = "See Agenda"

date = self.table_cell("Date")
time = self.table_cell("Time")
Expand Down

0 comments on commit 6c77852

Please sign in to comment.