From c36ae09d5715e5853c74cf85d539aee518df7ad6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 13 Jan 2013 04:26:02 +0000 Subject: [PATCH] remove 2.57-windows workaround for WM_OT_copy_prev_settings --- release/scripts/startup/bl_operators/wm.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py index 00cc763c4e1..a76d8292a1d 100644 --- a/release/scripts/startup/bl_operators/wm.py +++ b/release/scripts/startup/bl_operators/wm.py @@ -1255,13 +1255,6 @@ class WM_OT_copy_prev_settings(Operator): else: shutil.copytree(path_src, path_dst, symlinks=True) - # in 2.57 and earlier windows installers, system scripts were copied - # into the configuration directory, don't want to copy those - system_script = os.path.join(path_dst, "scripts/modules/bpy_types.py") - if os.path.isfile(system_script): - shutil.rmtree(os.path.join(path_dst, "scripts")) - shutil.rmtree(os.path.join(path_dst, "plugins")) - # don't loose users work if they open the splash later. if bpy.data.is_saved is bpy.data.is_dirty is False: bpy.ops.wm.read_homefile()