From 6b07c3d23ef6feb042d13d7bfc56262dbdd45d7d Mon Sep 17 00:00:00 2001 From: 1martinos <60014536+1martinos@users.noreply.github.com> Date: Fri, 18 Jun 2021 12:03:45 +0100 Subject: [PATCH] Added a missing apostrophe. --- download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download.py b/download.py index a741d04..b60d07c 100644 --- a/download.py +++ b/download.py @@ -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")