Skip to content

Commit

Permalink
uppercase the addition
Browse files Browse the repository at this point in the history
  • Loading branch information
Rkuro committed Nov 30, 2024
1 parent 2187536 commit 3cb0d9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapers/pa/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def parse_votes(self, bill, page):
# As of Nov 2024, this URL in the new site is broken
# but works if we add a query param
if "sessyr" not in url.lower():
url = f"{url}&sessyr={self.session_year}"
url = f"{url}&sessYr={self.session_year}"
yield from self.parse_committee_votes(bill, url)
else:
msg = "Unexpected vote url: %r" % url
Expand Down

0 comments on commit 3cb0d9d

Please sign in to comment.