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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-10-05 08:56:10 +0300
committerCampbell Barton <campbell@blender.org>2022-10-05 08:56:10 +0300
commit1a485a3aa619f3359b869dabeff0132634a22e15 (patch)
treeb8aa95b8cbabf02f2b853efff659b3491c1b7498 /source/blender/python
parentb9cbb229b1848bf71dae41c0b873def75ce3e32b (diff)
Fix error in 6b76381e0a52cf15513087e470a4a4c07471acc6
Missed flipping arguments for caller.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy.c b/source/blender/python/intern/bpy.c
index 861b4dddff9..77710d6df37 100644
--- a/source/blender/python/intern/bpy.c
+++ b/source/blender/python/intern/bpy.c
@@ -322,7 +322,7 @@ static PyObject *bpy_resource_path(PyObject *UNUSED(self), PyObject *args, PyObj
return NULL;
}
- path = BKE_appdir_resource_path_id_with_version(type.value_found, (major * 100) + minor, false);
+ path = BKE_appdir_resource_path_id_with_version(type.value_found, false, (major * 100) + minor);
return PyC_UnicodeFromByte(path ? path : "");
}