From 6f49528c8364dab5dd8ec4fbca3e424a617c1ab3 Mon Sep 17 00:00:00 2001
From: Ryan Inch <mythologylover75@gmail.com>
Date: Wed, 15 Apr 2020 01:10:29 -0400
Subject: [PATCH] Collection Manager: Fix reload scripts bug. Task: T69577

---
 object_collection_manager/__init__.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index 47dc183ee..36e4f0336 100644
--- a/object_collection_manager/__init__.py
+++ b/object_collection_manager/__init__.py
@@ -22,7 +22,7 @@ bl_info = {
     "name": "Collection Manager",
     "description": "Manage collections and their objects",
     "author": "Ryan Inch",
-    "version": (2,7,4),
+    "version": (2,7,5),
     "blender": (2, 80, 0),
     "location": "View3D - Object Mode (Shortcut - M)",
     "warning": '',  # used for warning icon and text in addons panel
@@ -35,6 +35,7 @@ if "bpy" in locals():
     import importlib
 
     importlib.reload(internals)
+    importlib.reload(operator_utils)
     importlib.reload(operators)
     importlib.reload(qcd_move_widget)
     importlib.reload(qcd_operators)
@@ -44,6 +45,7 @@ if "bpy" in locals():
 
 else:
     from . import internals
+    from . import operator_utils
     from . import operators
     from . import qcd_move_widget
     from . import qcd_operators
-- 
GitLab