From 41dae26d9055dcd513a11219c2c3524b8238f23d Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Tue, 25 Mar 2025 20:02:06 -0400 Subject: [PATCH] Fixed a message to be more clear. --- src/cthulhu/plugin_system_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cthulhu/plugin_system_manager.py b/src/cthulhu/plugin_system_manager.py index 31d74c7..8fa613e 100644 --- a/src/cthulhu/plugin_system_manager.py +++ b/src/cthulhu/plugin_system_manager.py @@ -41,7 +41,7 @@ try: PLUGGY_AVAILABLE = True except ImportError: PLUGGY_AVAILABLE = False - print("Warning: pluggy not available. Using fallback plugin system.") + print("Warning: Couldn't import pluggy. Plugins will not be available.") try: from gi.repository import GObject