Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'io_scene_gltf2/io/exp/gltf2_io_draco_compression_extension.py')
-rw-r--r--io_scene_gltf2/io/exp/gltf2_io_draco_compression_extension.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_gltf2/io/exp/gltf2_io_draco_compression_extension.py b/io_scene_gltf2/io/exp/gltf2_io_draco_compression_extension.py
index 1db5ca91..2d42ce10 100644
--- a/io_scene_gltf2/io/exp/gltf2_io_draco_compression_extension.py
+++ b/io_scene_gltf2/io/exp/gltf2_io_draco_compression_extension.py
@@ -28,7 +28,7 @@ def dll_path() -> Path:
"""
lib_name = 'extern_draco'
blender_root = Path(bpy.app.binary_path).parent
- python_lib = "{v[0]}.{v[1]}/python/lib".format(v=bpy.app.version)
+ python_lib = Path("{v[0]}.{v[1]}/python/lib".format(v=bpy.app.version))
python_version = "python{v[0]}.{v[1]}".format(v=sys.version_info)
paths = {
'win32': blender_root/python_lib/'site-packages'/'{}.dll'.format(lib_name),