diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index 47dc183ee04b9e3dcda226988ed1247b721b3346..36e4f03362a1de3034c7ac4b75df62ce83e4a06f 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