Skip to content

Commit

Permalink
WV: Fix for amendment urls (#4873)
Browse files Browse the repository at this point in the history
  • Loading branch information
showerst authored Mar 7, 2024
1 parent cf7824f commit 3fc34e2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scrapers/wv/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,7 @@ def scrape_amendments(self, page, bill):
):
version_name = row.xpath("string(.)").strip()
version_url = row.xpath("@href")[0]
version_url = version_url.replace(" ", "%20")
bill.add_version_link(
version_name, version_url, media_type="text/html", on_duplicate="ignore"
)
Expand Down

0 comments on commit 3fc34e2

Please sign in to comment.