From 405a911f465d975bb57a01b4db20b47f85a59624 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Wed, 29 Apr 2020 11:43:53 +0200 Subject: [PATCH] Remove unused plugins from run_plugin_actions --- tljh/installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tljh/installer.py b/tljh/installer.py index c13a6e9..689c8de 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -396,7 +396,7 @@ def setup_plugins(plugins=None): return pm -def run_plugin_actions(plugin_manager, plugins): +def run_plugin_actions(plugin_manager): """ Run installer hooks defined in plugins """ @@ -499,7 +499,7 @@ def main(): ensure_symlinks(HUB_ENV_PREFIX) # Run installer plugins last - run_plugin_actions(pm, args.plugin) + run_plugin_actions(pm) logger.info("Done!")