Remove print left in by accident

This commit is contained in:
Campbell Barton 2018-07-06 12:10:30 +02:00
parent 3e0920c61a
commit dd5c25fab2
Notes: blender-bot 2023-02-14 05:38:26 +01:00
Referenced by issue #55795, OpenCL rendering with Cycles crashes Blender 2.8
1 changed files with 0 additions and 1 deletions

View File

@ -368,7 +368,6 @@ def enable(module_name, *, default_set=False, persistent=False, handle_error=Non
return None
try:
print(mod.bl_info.get("blender", (0, 0, 0)))
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: