diff --git a/md2html.py b/md2html.py
index 02b1cc8..fb8ede9 100755
--- a/md2html.py
+++ b/md2html.py
@@ -23,6 +23,5 @@ with open(mdfile, "r", encoding="utf-8") as datafile:
md = datafile.read()
htmlcontent = markdown.markdown(md, extras=markdown.Markdown.extras)
-
with open(htmlfilename, "w", encoding="utf-8") as outfile:
outfile.write(myhead + htmlcontent + myfooter)