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/scripts/modules/bpy/utils.py')
-rw-r--r--release/scripts/modules/bpy/utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/modules/bpy/utils.py b/release/scripts/modules/bpy/utils.py
index da12975e4a6..43e4bea4bb3 100644
--- a/release/scripts/modules/bpy/utils.py
+++ b/release/scripts/modules/bpy/utils.py
@@ -253,8 +253,8 @@ _scripts = (_os.path.normpath(_scripts), )
def user_script_path():
- prefs = _bpy.context.user_preferences
- path = prefs.filepaths.script_directory
+ # returns the env var and falls back to userprefs
+ path = _user_resource('SCRIPTS')
if path:
path = _os.path.normpath(path)
@@ -281,7 +281,7 @@ def script_paths(subdir=None, user_pref=True, check_all=False):
prefs = _bpy.context.user_preferences
# add user scripts dir
- user_script = prefs.filepaths.script_directory if user_pref else None
+ user_script = user_script_path()
if check_all:
# all possible paths