From 563dd4050f510bb3ebb74ede745ce20311d06f2b Mon Sep 17 00:00:00 2001 From: Michael Kavulich Date: Mon, 21 Oct 2024 07:13:38 -0600 Subject: [PATCH] [develop] Fix get_crontab_contents.py (#1142) Fixes bug described in issue #1141: get_crontab_contents.py fails when run as a script --- ush/get_crontab_contents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ush/get_crontab_contents.py b/ush/get_crontab_contents.py index 7f08346b5..f619fa458 100644 --- a/ush/get_crontab_contents.py +++ b/ush/get_crontab_contents.py @@ -224,7 +224,7 @@ def _parse_args(argv): ) # Check that inputs are correct and consistent - args = parser._parse_args(argv) + args = parser.parse_args(argv) if args.remove: if args.line is None: