From 6a9d4bf648ba923147e070a022e276d4d3ed1dd0 Mon Sep 17 00:00:00 2001 From: Timmy Welch Date: Sun, 16 Mar 2025 14:06:49 -0700 Subject: [PATCH] Update sys.path handling --- comictaggerlib/ctsettings/plugin_finder.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/comictaggerlib/ctsettings/plugin_finder.py b/comictaggerlib/ctsettings/plugin_finder.py index 0d3ba6d..9f045ae 100644 --- a/comictaggerlib/ctsettings/plugin_finder.py +++ b/comictaggerlib/ctsettings/plugin_finder.py @@ -142,6 +142,7 @@ def find_plugins(plugin_folder: pathlib.Path) -> Plugins: for plugin_path in os_sorted(zips): logger.debug("looking for plugins in %s", plugin_path) + sys_path = sys.path.copy() try: sys.path.append(str(plugin_path)) for plugin in _find_local_plugins(plugin_path): @@ -150,7 +151,7 @@ def find_plugins(plugin_folder: pathlib.Path) -> Plugins: except Exception as err: logger.exception(FailedToLoadPlugin(plugin_path.name, err)) finally: - sys.path.remove(str(plugin_path)) + sys.path = sys_path for mod in list(sys.modules.values()): if ( mod is not None