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.
This commit is contained in:
Bastien Montagne 2019-03-16 13:00:17 +01:00
parent 03ee447dd2
commit e5e6c3b52c
Notes: blender-bot 2023-02-14 19:18:47 +01:00
Referenced by issue blender/blender-addons#62576, The remaining two unported official add-ons: X3D and 3DS
1 changed files with 0 additions and 7 deletions

View File

@ -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")