Skip to content

Commit 49514f9

Browse files
fix interaction of different filepath separators between operating systems (#25)
1 parent 88c67b4 commit 49514f9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

bseq/utils.py

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def refresh_obj(obj, scene):
3333
fs = bpy.path.abspath(fs, start=scene.BSEQ.root_path)
3434
else:
3535
fs = bpy.path.abspath(fs)
36+
fs = bpy.path.native_pathsep(fs)
3637
fs = fileseq.findSequenceOnDisk(fs)
3738
fs = fileseq.findSequenceOnDisk(fs.dirname() + fs.basename() + "@" + fs.extension())
3839
obj.BSEQ.start_end_frame = (fs.start(), fs.end())

0 commit comments

Comments
 (0)