diff --git a/colorbleed/lib.py b/colorbleed/lib.py index 82be01987e..8e1d0becc6 100644 --- a/colorbleed/lib.py +++ b/colorbleed/lib.py @@ -238,9 +238,7 @@ def collect_container_metadata(container): """ # TODO: Improve method of getting the host lib module host_name = _get_host_name() - - # This will cover nested module names like avalon.maya - package_name = "{}.{}.lib".format(__name__, host_name) + package_name = "colorbleed.{}.lib".format(host_name) hostlib = importlib.import_module(package_name) if not hasattr(hostlib, "get_additional_data"):