Skip to content

Commit

Permalink
Fix quotes in team name
Browse files Browse the repository at this point in the history
  • Loading branch information
pretrehr committed Oct 5, 2021
1 parent 6869af9 commit eaf09dc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sportsbetting/bookmakers/pmu.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ def parse_pmu_html(soup):
match = string.replace(" - ", "-")
match = match.replace(" // ", " - ")
match = match.replace("//", " - ")
match = match.replace('"', '')
elif "class" in line.attrs and "event-list-odds-list" in line["class"]:
if any([live, is_rugby_13, series]):
live = False
Expand Down

0 comments on commit eaf09dc

Please sign in to comment.