From c11711e29d7451c3d996907d72fac93ca62192a5 Mon Sep 17 00:00:00 2001 From: George McCabe <23407799+georgemccabe@users.noreply.github.com> Date: Fri, 4 Mar 2022 13:58:03 -0700 Subject: [PATCH] fixed bug with replacing wildcard characters with 'all' in output file paths --- metplus/wrappers/command_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metplus/wrappers/command_builder.py b/metplus/wrappers/command_builder.py index 7a3b499530..5852b667ad 100755 --- a/metplus/wrappers/command_builder.py +++ b/metplus/wrappers/command_builder.py @@ -1000,7 +1000,7 @@ def find_and_check_output_file(self, time_info=None, **time_info) # replace wildcard character * with all - output_path.replace('*', 'all') + output_path = output_path.replace('*', 'all') skip_if_output_exists = self.c_dict.get('SKIP_IF_OUTPUT_EXISTS', False)