diff --git a/AUTHORS b/AUTHORS index 32c8581f..12a44f0e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,3 +1,4 @@ +Alexander Ignatov Alexander Kuznetsov Jeremy Stanley Nikita Konovalov diff --git a/savannaclient/api/plugins.py b/savannaclient/api/plugins.py index 5f27f8de..eff327cf 100644 --- a/savannaclient/api/plugins.py +++ b/savannaclient/api/plugins.py @@ -23,6 +23,12 @@ from savannaclient.api import base class Plugin(base.Resource): resource_name = 'Plugin' + def __init__(self, manager, info): + base.Resource.__init__(self, manager, info) + + # Horizon requires each object in table to have an id + self.id = self.name + class PluginManager(base.ResourceManager): resource_class = Plugin