diff --git a/apocalypse/arghandler.py b/apocalypse/arghandler.py index d10c583..b78465f 100644 --- a/apocalypse/arghandler.py +++ b/apocalypse/arghandler.py @@ -31,13 +31,14 @@ PARTITIONS = [ ] # yapf: disable + def get_apo_input(): description = ( "After each file is written, indicated script will be executed. " "Path for the file will be passed to the script as --input . " "There is a possibility of passing not defined here, but allowed by slurm documentation " "parameters directly to slurm call. For that, just add them at the end of your call e.g. " - "as: apo -s xxx -e y --nice=100 . For additional information check 'man sbatch'" + "as: apocalypse -s xxx -e y --nice=100 . For additional information check 'man sbatch'" ) parser = argparse.ArgumentParser(description=description) parser._optionals.title = "flag arguments" diff --git a/res/rerun_args.py b/res/rerun_args.py index 3635996..dec6347 100644 --- a/res/rerun_args.py +++ b/res/rerun_args.py @@ -1,11 +1,13 @@ import argparse +from logzero import logger + from utils.helpers import check_pgroup def get_rerun_input(): parser = argparse.ArgumentParser( - description="Re-run finished DAQ. Usage: apo_re_run -p pgroup -r run" + description="Re-run finished DAQ. Usage: apocalypse_re_run -p pgroup -r run" ) parser._optionals.title = "flag arguments" required = parser.add_argument_group("required")