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:
authorBrecht Van Lommel <brecht@blender.org>2021-05-31 20:23:49 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-05-31 20:23:49 +0300
commit09fb81f66de7df9405fbb8334d2e9e2927f1ead6 (patch)
treed2158c2d0460068aec10e2f31367ac62942d790b /release
parent25316ef9d735281a83b41f9e14fa3c712b1ada82 (diff)
parent46a14bd6a317ead29dfdbf038bd30d49a656249e (diff)
Merge branch 'blender-v2.93-release'
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/userpref.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_operators/userpref.py b/release/scripts/startup/bl_operators/userpref.py
index 3969386bad7..dd84dfa2df8 100644
--- a/release/scripts/startup/bl_operators/userpref.py
+++ b/release/scripts/startup/bl_operators/userpref.py
@@ -153,7 +153,7 @@ class PREFERENCES_OT_copy_prev(Operator):
def execute(self, _context):
import shutil
- shutil.copytree(self._old_path(), self._new_path(), dirs_exist_ok=True)
+ shutil.copytree(self._old_path(), self._new_path(), dirs_exist_ok=True, symlinks=True)
# reload preferences and recent-files.txt
bpy.ops.wm.read_userpref()