Extensions: move junction_module to a private location

bpy_extras is part of the public API where as the junction_module
is part of the internal implementation of extensions.
Move to "_bpy_internal".
This commit is contained in:
Campbell Barton 2024-06-28 14:30:11 +10:00
parent 80f07e3f26
commit ac8da6c72e
2 changed files with 1 additions and 1 deletions

View File

@ -1174,7 +1174,7 @@ def _initialize_extensions_site_packages(*, create=False):
def _initialize_extensions_repos_once():
from bpy_extras.extensions.junction_module import JunctionModuleHandle
from _bpy_internal.extensions.junction_module import JunctionModuleHandle
module_handle = JunctionModuleHandle(_ext_base_pkg_idname)
module_handle.register_module()
_ext_global.module_handle = module_handle