Skip to content
Snippets Groups Projects
Commit bec9268b authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Remove quotes

parent 31c3b77d
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ def upgradeIndex(args: argparse.Namespace) -> None: ...@@ -21,7 +21,7 @@ def upgradeIndex(args: argparse.Namespace) -> None:
source_html = source_file.read() source_html = source_file.read()
# Read the destination HTML file # Read the destination HTML file
with open('args.indexTemplate', 'r', encoding='utf-8') as dest_file: with open(args.indexTemplate, 'r', encoding='utf-8') as dest_file:
dest_html = dest_file.read() dest_html = dest_file.read()
# Parse both HTML files # Parse both HTML files
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment