diff options
Diffstat (limited to '')
-rw-r--r-- | portato/plugin.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/portato/plugin.py b/portato/plugin.py index 70d27e1..4d49fc9 100644 --- a/portato/plugin.py +++ b/portato/plugin.py @@ -197,6 +197,9 @@ class PluginQueue: if load: self._load() + def get_plugin_data (self): + return [(x.name, x.author) for x in self.list] + def hook (self, hook, *hargs, **hkwargs): """This is a method taking care of calling the plugins. |