Skip to content

Commit 0ecc329

Browse files
authored
Merge pull request #104 from lguerard/devel
Fix issue with java path object by using `join2` from the `imcflibs.pathtools` module.
2 parents 205869c + 073df14 commit 0ecc329

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/imcflibs/imagej/misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ def save_image_in_format(imp, format, out_dir, series, pad_number, split_channel
614614
for index, current_imp in enumerate(imp_to_use):
615615
basename = imp.getShortTitle()
616616

617-
out_path = os.path.join(
617+
out_path = pathtools.join2(
618618
dir_to_save[index],
619619
basename + "_series_" + str(series).zfill(pad_number),
620620
)

0 commit comments

Comments
 (0)