diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-06-18 01:29:08 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-06-18 01:29:08 +0100 |
commit | 0fc517ec516e33b870291a97b6156f7c0b7dc425 (patch) | |
tree | e6c2d888007bd85bb8eddbebab29737fed4b812c | |
parent | dda01cd2c5c72bd2077f8e7499818ae8c8682f83 (diff) | |
download | sos-0fc517ec516e33b870291a97b6156f7c0b7dc425.tar.gz |
[openshift] fix plugin_name
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/openshift.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/openshift.py b/sos/plugins/openshift.py index 554ac2dd..ecbbfc68 100644 --- a/sos/plugins/openshift.py +++ b/sos/plugins/openshift.py @@ -17,7 +17,7 @@ from sos.plugins import Plugin, RedHatPlugin class Openshift(Plugin, RedHatPlugin): '''Openshift related information''' - plugin_name = "Openshift" + plugin_name = "openshift" option_list = [("broker", "Gathers broker specific files", "slow", False), ("node", "Gathers node specific files", "slow", False)] |