From b194c4db6be9fcfe650809f6202d35923809a6b2 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Mon, 3 Jun 2024 11:44:22 +0100 Subject: [PATCH] Add a name to the EventManagerPlugin --- envisage/plugins/event_manager/plugin.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/envisage/plugins/event_manager/plugin.py b/envisage/plugins/event_manager/plugin.py index d7ac3169e..d621ab748 100644 --- a/envisage/plugins/event_manager/plugin.py +++ b/envisage/plugins/event_manager/plugin.py @@ -24,8 +24,12 @@ class EventManagerPlugin(Plugin): """Plugin to add event manager to the application.""" + #: The plugin's unique identifier. id = "envisage.event_manager" + #: The plugin's name (suitable for displaying to the user). + name = "Event Manager" + SERVICE_OFFERS = "envisage.service_offers" service_offers = List(contributes_to=SERVICE_OFFERS)