Skip to content

Commit

Permalink
Merge pull request #4798 from NewAgeAirbender/us_bills
Browse files Browse the repository at this point in the history
US: drop characters on event titles
  • Loading branch information
NewAgeAirbender authored Jan 17, 2024
2 parents e61049b + c68b79d commit c7b4958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapers/usa/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def house_meeting(self, xml, source_url):
event_name = f"{title[:100]}#{address}#{start_dt}"
event = Event(
start_date=start_dt,
name=title[:1000],
name=title[:290],
location_name=address,
classification="committee-meeting",
)
Expand Down

0 comments on commit c7b4958

Please sign in to comment.