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.
This commit is contained in:
Bastien Montagne 2019-03-18 10:36:50 +01:00
parent 3a8099c45c
commit 8ecc4d4f16
1 changed files with 3 additions and 5 deletions

View File

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