Skip to content

Commit

Permalink
Merge pull request #5105 from Rkuro/main
Browse files Browse the repository at this point in the history
Catch param case sensitivity on PA vote parsing
  • Loading branch information
jessemortenson authored Dec 2, 2024
2 parents 3ae3a73 + 3cb0d9d commit d509cea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scrapers/pa/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,8 @@ def parse_votes(self, bill, page):
elif "/roll-call-votes/" in url:
# 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:
url = f"{url}&sessyr={self.session_year}"
if "sessyr" not in url.lower():
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 d509cea

Please sign in to comment.