From 8bf6aa99b86d3b8dcd2c9cc9d520479e304ac1a9 Mon Sep 17 00:00:00 2001 From: chestercai1995 <40621147+chestercai1995@users.noreply.github.com> Date: Thu, 28 Apr 2022 15:10:15 -0500 Subject: [PATCH] Update scarab_batch_types.py (#135) Fixed typo --- bin/scarab_globals/scarab_batch_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/scarab_globals/scarab_batch_types.py b/bin/scarab_globals/scarab_batch_types.py index 014e1f06..0fabcf03 100644 --- a/bin/scarab_globals/scarab_batch_types.py +++ b/bin/scarab_globals/scarab_batch_types.py @@ -367,7 +367,7 @@ def get_program_or_checkpoint_options(job): run_exec = "" if type(job) is Program: - run_exec = f' --program="{job.run_cmde}"' + run_exec = f' --program="{job.run_cmd}"' elif type(job) is Checkpoint: run_exec = f' --checkpoint="{job.path}"' elif type(job) is Trace: