From 26f9e560141210fb012aeb6ed72ac28f2e62fc72 Mon Sep 17 00:00:00 2001 From: johannes Date: Mon, 5 Feb 2018 13:57:41 +0100 Subject: [PATCH] change short option for overwrite to be a single letter --- Tools/ecl_ekf/batch_process_logdata_ekf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/ecl_ekf/batch_process_logdata_ekf.py b/Tools/ecl_ekf/batch_process_logdata_ekf.py index 1136aafc89..6602ea60a8 100755 --- a/Tools/ecl_ekf/batch_process_logdata_ekf.py +++ b/Tools/ecl_ekf/batch_process_logdata_ekf.py @@ -11,7 +11,7 @@ Runs process_logdata_ekf.py on the .ulg files in the supplied directory. ulog fi parser = argparse.ArgumentParser(description='Analyse the estimator_status and ekf2_innovation message data for the' ' .ulg files in the specified directory') parser.add_argument("directory_path") -parser.add_argument('-ow', '--overwrite', action='store_true', +parser.add_argument('-o', '--overwrite', action='store_true', help='Whether to overwrite an already analysed file. If a file with .pdf extension exists for a .ulg' 'file, the log file will be skipped from analysis unless this flag has been set.')