From f40badc0ceb7305d282058f00887086ac5b04afb Mon Sep 17 00:00:00 2001 From: James Foucar Date: Wed, 3 May 2017 17:37:12 -0600 Subject: [PATCH] These template files were not correctly upgraded to the new argument parsing --- config/acme/machines/template.case.run | 2 +- config/acme/machines/template.case.test | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/acme/machines/template.case.run b/config/acme/machines/template.case.run index 7f949dde425..56d425e3401 100755 --- a/config/acme/machines/template.case.run +++ b/config/acme/machines/template.case.run @@ -55,7 +55,7 @@ formatter_class=argparse.ArgumentDefaultsHelpFormatter parser.add_argument("--caseroot", help="Case directory to build") - CIME.utils.parse_args_and_handle_standard_logging_options(args, parser) + args = CIME.utils.parse_args_and_handle_standard_logging_options(args, parser) if args.caseroot is not None: os.chdir(args.caseroot) diff --git a/config/acme/machines/template.case.test b/config/acme/machines/template.case.test index 81ccab9cbd1..5fbb6b5c35f 100755 --- a/config/acme/machines/template.case.test +++ b/config/acme/machines/template.case.test @@ -50,7 +50,7 @@ formatter_class=argparse.ArgumentDefaultsHelpFormatter parser.add_argument("--caseroot", help="Case directory to build") - CIME.utils.parse_args_and_handle_standard_logging_options(args, parser) + args = CIME.utils.parse_args_and_handle_standard_logging_options(args, parser) if args.caseroot is not None: os.chdir(args.caseroot)