We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9ad43e commit 53cb92aCopy full SHA for 53cb92a
css-html-js-minify.py
@@ -982,7 +982,7 @@ def process_single_html_file(html_file_path):
982
with open(html_file_path) as html_file:
983
minified_html = html_minify(html_file.read(),
984
comments=only_on_py3(args.comments))
985
- html_file_path = prefixer_extensioner(html_file_path, ".htm", ".html")
+ html_file_path = prefixer_extensioner(html_file_path, ".html", ".html")
986
try: # Python3
987
with open(html_file_path, "w", encoding="utf-8") as output_file:
988
output_file.write(minified_html)
0 commit comments