Skip to content

Commit 3fef70c

Browse files
authored
Merge pull request #1488 from mtwilliams5/patch-1
Fix Wigan Council parsing
2 parents afe65a2 + 4ab3470 commit 3fef70c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uk_bin_collection/uk_bin_collection/councils/WiganBoroughCouncil.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def parse_data(self, page: str, **kwargs) -> dict:
8282
# Get the dates.
8383
for bins in soup.find_all("div", {"class": "BinsRecycling"}):
8484
bin_type = bins.find("h2").text
85-
binCollection = bins.find("div", {"class": "dateWrapper-next"}).get_text(
85+
binCollection = bins.find("div", {"class": "dateWrap-next"}).get_text(
8686
strip=True
8787
)
8888
binData = datetime.strptime(

0 commit comments

Comments
 (0)