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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-03-16 15:00:17 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-03-16 15:02:34 +0300
commite5e6c3b52c0b651e1f301736e47a0c4379c616fa (patch)
tree5a881baec88c3c082ee5513214fb090fc9e40e9a
parent03ee447dd2d2b2000ff9019f7f80984a0e895865 (diff)
Fix T62576: The remaining two unported official add-ons: X3D and 3DS.
X3D has been (basically) ported in rBAe8da70ab73d2dd5ff46, and 3DS has been downgraded to 'community' support, so we can get rid of that ugly 'slience warning' hack.
-rw-r--r--release/scripts/modules/addon_utils.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/release/scripts/modules/addon_utils.py b/release/scripts/modules/addon_utils.py
index ef5ec77a6c5..4e7c278f196 100644
--- a/release/scripts/modules/addon_utils.py
+++ b/release/scripts/modules/addon_utils.py
@@ -365,13 +365,6 @@ def enable(module_name, *, default_set=False, persistent=False, handle_error=Non
# 1.1) fail when add-on is too old
# This is a temporary 2.8x migration check, so we can manage addons that are supported.
- # Silent default, we know these need updating.
- if module_name in {
- "io_scene_3ds",
- "io_scene_x3d",
- }:
- return None
-
try:
if mod.bl_info.get("blender", (0, 0, 0)) < (2, 80, 0):
raise Exception(f"Add-on '{module_name:s}' has not been upgraded to 2.8, ignoring")