diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-09-18 20:22:44 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-09-18 20:22:44 +0100 |
commit | ef74a5bd22baea04b292e458de1be6b4980b6999 (patch) | |
tree | 53b9ccc41c7bae60f5f9e36b1536db0f6cf669c4 | |
parent | 1b15835a18c98b3adc4f7454652f2a8604bed4cf (diff) | |
download | sos-ef74a5bd22baea04b292e458de1be6b4980b6999.tar.gz |
[openstack_neutron] set correct plugin name
Fixes #394.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/openstack_neutron.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/openstack_neutron.py b/sos/plugins/openstack_neutron.py index 8b8c03d6..6eea1485 100644 --- a/sos/plugins/openstack_neutron.py +++ b/sos/plugins/openstack_neutron.py @@ -30,7 +30,7 @@ from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin class Neutron(Plugin): """OpenStack Networking """ - plugin_name = "neutron" + plugin_name = "openstack_neutron" profiles = ('openstack',) option_list = [("log", "Gathers all Neutron logs", "slow", False), |