Skip to content

Commit 064ca23

Browse files
authored
MN: manual fix for bad date (#5684)
1 parent a0af09f commit 064ca23

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scrapers/mn/bills.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ def parse_inline_action_date(self, text):
458458
def parse_dates(self, datestr):
459459
# Fixing a typo in source data on following URL
460460
# https://www.revisor.mn.gov/bills/bill.php?b=House&f=HF2184&ssn=0&y=2025
461-
datestr = datestr.replace("/225", "/2025")
461+
datestr = datestr.replace("/225", "/2025").replace("/226", "2026")
462462
date_formats = ["%m/%d/%Y", "%m/%d/%y"]
463463
for fmt in date_formats:
464464
try:

0 commit comments

Comments
 (0)