diff --git a/src/PIL/Image.py b/src/PIL/Image.py index 300c9ac323c..7c3826d92c5 100644 --- a/src/PIL/Image.py +++ b/src/PIL/Image.py @@ -355,11 +355,11 @@ def init(): if _initialized >= 2: return 0 - parent_module, _, _ = __name__.rpartition(".") + parent_name = __name__.rpartition(".")[0] for plugin in _plugins: try: logger.debug("Importing %s", plugin) - __import__(f"{parent_module}.{plugin}", globals(), locals(), []) + __import__(f"{parent_name}.{plugin}", globals(), locals(), []) except ImportError as e: logger.debug("Image: failed to import %s: %s", plugin, e)