Skip to content

Commit

Permalink
fixed bug with replacing wildcard characters with 'all' in output fil…
Browse files Browse the repository at this point in the history
…e paths
  • Loading branch information
georgemccabe committed Mar 4, 2022
1 parent 47ac92e commit c11711e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metplus/wrappers/command_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit c11711e

Please sign in to comment.