Commit: 8ecc4d4f160440bb287c06b457bfc147feaa6ee6
Author: Bastien Montagne
Date:   Mon Mar 18 10:36:50 2019 +0100
Branches: master
https://developer.blender.org/rB8ecc4d4f160440bb287c06b457bfc147feaa6ee6

Fix noisy console messages about unported add-ons by default.

* Make those single-line warning, there is really no reason to raise
exception (i.e. error) for that.
* Only show them when `--debug` option is set.

===================================================================

M       release/scripts/modules/addon_utils.py

===================================================================

diff --git a/release/scripts/modules/addon_utils.py 
b/release/scripts/modules/addon_utils.py
index f2e799f1760..6ee8e9aa227 100644
--- a/release/scripts/modules/addon_utils.py
+++ b/release/scripts/modules/addon_utils.py
@@ -365,11 +365,9 @@ 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.
 
-        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")
-        except Exception as ex:
-            handle_error(ex)
+        if mod.bl_info.get("blender", (0, 0, 0)) < (2, 80, 0):
+            if _bpy.app.debug:
+                print(f"Warning: Add-on '{module_name:s}' has not been 
upgraded to 2.8, ignoring")
             return None
 
         # 2) try register collected modules

_______________________________________________
Bf-blender-cvs mailing list
Bf-blender-cvs@blender.org
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to