Skip to content

Commit

Permalink
Fix issue in CSS url processing
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit74 committed Feb 16, 2024
1 parent cd7412a commit ed80431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wikihow2zim/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def write(line):
end = line.index(")")

# check whether it's quoted or not
if line[start + 1] in ("'", '"'):
if line[start] in ("'", '"'):
start += 1
end -= 1

Expand Down

0 comments on commit ed80431

Please sign in to comment.