Commit bec9268b authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Remove quotes

parent 31c3b77d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ def upgradeIndex(args: argparse.Namespace) -> None:
            source_html = source_file.read()

        # 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()

        # Parse both HTML files