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:
Diffstat (limited to 'release')
-rw-r--r--release/scripts/modules/bpy/utils/__init__.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/release/scripts/modules/bpy/utils/__init__.py b/release/scripts/modules/bpy/utils/__init__.py
index 86eea422cf9..d3e0ecc729d 100644
--- a/release/scripts/modules/bpy/utils/__init__.py
+++ b/release/scripts/modules/bpy/utils/__init__.py
@@ -353,10 +353,11 @@ def script_paths(subdir=None, user_pref=True, check_all=False, use_user=True):
*base_paths,
)
- if use_user:
- test_paths = (*base_paths, script_path_user(), script_path_pref())
- else:
- test_paths = (*base_paths, script_path_pref())
+ test_paths = (
+ *base_paths,
+ *((script_path_user(),) if use_user else ()),
+ *((script_path_pref(),) if user_pref else ()),
+ )
for path in test_paths:
if path: