Skip to content

Commit ea23674

Browse files
committed
Fix
1 parent d1fbe84 commit ea23674

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/access_mopper/templates/cmor_job_script.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ file_patterns = {{ config.get('file_patterns', {}) | tojson }}
5050
pattern = file_patterns.get(variable)
5151
if not pattern:
5252
raise ValueError(f'No pattern found for variable {variable}')
53-
full_pattern = str(Path(input_folder) / pattern)
53+
full_pattern = str(input_folder + pattern)
5454
input_files = glob.glob(full_pattern)
5555
if not input_files:
5656
raise ValueError(f'No files found for pattern {full_pattern}')

0 commit comments

Comments
 (0)