Browse Source

Use format to properly format file for process_logdata_parser.py

sbg
Khoi Tran 8 years ago committed by Beat Küng
parent
commit
355205554a
  1. 2
      Tools/ecl_ekf/batch_process_logdata_ekf.py

2
Tools/ecl_ekf/batch_process_logdata_ekf.py

@ -24,4 +24,4 @@ print("\n"+"analysing all .ulog files in "+ulog_directory) @@ -24,4 +24,4 @@ print("\n"+"analysing all .ulog files in "+ulog_directory)
for file in os.listdir(ulog_directory):
if file.endswith(".ulg"):
print("\n"+"loading "+file+" for analysis")
os.system("python process_logdata_ekf.py "+ulog_directory+"/"+file)
os.system("python process_logdata_ekf.py '{}'".format(os.path.join(ulog_directory, file)))

Loading…
Cancel
Save