From 3c9c11d45154625ce0fb5611be3828b9722b3db3 Mon Sep 17 00:00:00 2001 From: tangxifan Date: Mon, 22 Aug 2022 18:02:38 -0700 Subject: [PATCH] [script] working on formatting --- openfpga_flow/scripts/arch_file_updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openfpga_flow/scripts/arch_file_updater.py b/openfpga_flow/scripts/arch_file_updater.py index 2bea7be4e..b36bce1e1 100644 --- a/openfpga_flow/scripts/arch_file_updater.py +++ b/openfpga_flow/scripts/arch_file_updater.py @@ -86,7 +86,7 @@ def convert_arch_xml_from_v1p1_to_v1p2(input_fname, output_fname): # Output the modified content with open(output_fname, "w") as output_xml_f: - doc.writexml(output_xml_f, indent=" ", newl='') + doc.writexml(output_xml_f, indent='', addindent=" ", newl='') doc.unlink() # Finish up