Skip to content

Commit

Permalink
fixed missing single quote
Browse files Browse the repository at this point in the history
  • Loading branch information
candiceevemiller committed Feb 7, 2022
1 parent 149f4ed commit 136a49a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion download.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def shorten_title(title):
if results.overwrite and os.path.exists(output_directory):
shutil.rmtree(output_directory)

with open("README.md",encoding="utf8) as readme:
with open("README.md",encoding="utf8") as readme:
readme_html = mistune.markdown(readme.read())
readme_soup = BeautifulSoup.BeautifulSoup(readme_html, "html.parser")

Expand Down

0 comments on commit 136a49a

Please sign in to comment.