Skip to content

Commit 53cb92a

Browse files
committed
fixed bug #8
1 parent e9ad43e commit 53cb92a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

css-html-js-minify.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -982,7 +982,7 @@ def process_single_html_file(html_file_path):
982982
with open(html_file_path) as html_file:
983983
minified_html = html_minify(html_file.read(),
984984
comments=only_on_py3(args.comments))
985-
html_file_path = prefixer_extensioner(html_file_path, ".htm", ".html")
985+
html_file_path = prefixer_extensioner(html_file_path, ".html", ".html")
986986
try: # Python3
987987
with open(html_file_path, "w", encoding="utf-8") as output_file:
988988
output_file.write(minified_html)

0 commit comments

Comments
 (0)