From 365721ec3a63f1a4c1ab716b9fd00c06de57d571 Mon Sep 17 00:00:00 2001 From: nickb <nickb@ssec.wisc.edu> Date: Fri, 12 Feb 2021 21:52:44 +0000 Subject: [PATCH] remove this error message. we don't support --start & --end in the minute gridder. --- gridded_glm/libexec/_minute_gridder.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/gridded_glm/libexec/_minute_gridder.py b/gridded_glm/libexec/_minute_gridder.py index 34a5943..76430a2 100644 --- a/gridded_glm/libexec/_minute_gridder.py +++ b/gridded_glm/libexec/_minute_gridder.py @@ -159,9 +159,6 @@ def grid_setup(args, work_dir=os.getcwd()): try: start_time, end_time = get_start_end(args.filenames) - except ValueError: - log.error("Non-standard filenames provided, use --start and --end to specify data times.") - raise except: log.error("Could not parse start & end times from one or more of the files provided.") exit(1) -- GitLab