Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'object_print3d_utils/__init__.py')
-rw-r--r--object_print3d_utils/__init__.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/object_print3d_utils/__init__.py b/object_print3d_utils/__init__.py
index 87a69155..01f8a1fa 100644
--- a/object_print3d_utils/__init__.py
+++ b/object_print3d_utils/__init__.py
@@ -21,7 +21,7 @@
bl_info = {
"name": "3D-Print Toolbox",
"author": "Campbell Barton",
- "blender": (2, 82, 0),
+ "blender": (3, 0, 0),
"location": "3D View > Sidebar",
"description": "Utilities for 3D printing",
"doc_url": "{BLENDER_MANUAL_URL}/addons/mesh/3d_print_toolbox.html",
@@ -34,7 +34,8 @@ if "bpy" in locals():
import importlib
importlib.reload(ui)
importlib.reload(operators)
- importlib.reload(mesh_helpers)
+ if "mesh_helpers" in locals():
+ importlib.reload(mesh_helpers)
if "export" in locals():
importlib.reload(export)
else: