From 47f3ff3f0e43689f6d5754acdd29f3f5069aea10 Mon Sep 17 00:00:00 2001 From: gac-x11ma Date: Tue, 4 Sep 2018 20:19:45 +0200 Subject: [PATCH] Script execution --- script/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/local.py b/script/local.py index e1e6be2..362f126 100644 --- a/script/local.py +++ b/script/local.py @@ -66,7 +66,7 @@ def convert_file(input_file_name, output_file_name): with open(input_file_name) as inp: lines = inp.readlines() with open(output_file_name, "wb") as out: - out.write("Energy" + sep + "Io" + sep + "CADC2" + sep + "CADC3" + "Mag" + line_sep) + out.write("Energy" + sep + "Io" + sep + "CADC2" + sep + "CADC3" + sep + "Mag" + line_sep) s = sep + " " #File format has a space before numeric values for line in lines[1:]: line = line.strip()