Skip to content

Commit bd5a88b

Browse files
committed
Fix importing prims on Linux
1 parent aaa23ad commit bd5a88b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

file_prim/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def execute(self, context):
107107
from . import bl_import_prim
108108

109109
prim_paths = [
110-
"%s\\%s" % (os.path.dirname(self.filepath), meshPaths.name)
110+
os.path.join(os.path.dirname(self.filepath), meshPaths.name)
111111
for meshPaths in self.files
112112
]
113113
for prim_path in prim_paths:

0 commit comments

Comments
 (0)