Skip to content

Commit 6cf7e69

Browse files
committed
fix ad os.path.join to glob.glob
1 parent 3820d20 commit 6cf7e69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

specs/callables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,4 +407,4 @@ def Split_output(inputs):
407407
import os, glob
408408

409409
output_dir = os.getcwd()
410-
return sorted(glob.glob(output_dir, f"{inputs.output_basename}*.*"))
410+
return sorted(glob.glob(os.path.join(output_dir, f"{inputs.output_basename}*.*")))

0 commit comments

Comments
 (0)