Skip to content

Commit

Permalink
per #2567, fix bug that caused file window logic to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe committed May 14, 2024
1 parent 8899df8 commit 12e8f56
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions metplus/wrappers/runtime_freq_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,7 @@ def get_input_templates(self, c_dict, input_info=None):
templates = getlist(
self.config.getraw('config', f'{prefix}_INPUT_TEMPLATE')
)
template_list = [os.path.join(input_dir, template)
for template in templates]
template = ','.join(template_list)
template = ','.join(templates)
c_dict[f'{label}_INPUT_TEMPLATE'] = template
if not c_dict[f'{label}_INPUT_TEMPLATE']:
if required:
Expand Down

0 comments on commit 12e8f56

Please sign in to comment.