Skip to content

Commit

Permalink
VA: Events: Fix for missing description (#5225)
Browse files Browse the repository at this point in the history
  • Loading branch information
showerst authored Jan 16, 2025
1 parent 78fdf30 commit b092d9f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scrapers/va/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,15 @@ def scrape(self, start_date=None):
if row["IsCancelled"]:
status = "cancelled"

desc = row["Description"] if "Description" in row else "See Agenda."

event = Event(
name=name,
start_date=when,
classification="committee-meeting",
location_name=location,
status=status,
description=row["Description"],
description=desc,
)
event.add_source("https://lis.virginia.gov/schedule")

Expand Down

0 comments on commit b092d9f

Please sign in to comment.