aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2020-02-14 17:21:27 +0000
committerBryn M. Reeves <bmr@redhat.com>2020-02-14 17:21:27 +0000
commitedcffea000a2277a705f2b678980e361155ef862 (patch)
tree021cb5cc6ed70000cfd47ec6477c974975bff0c7
parentdfc855f83cf866d1d7d6b8f83bbe95d5c896b281 (diff)
downloadsos-edcffea000a2277a705f2b678980e361155ef862.tar.gz
[convert2rhel] set class docstring
The plugin does not set a class level docstring, causing it to dump the Plugin base-class documentation into --list-plugins: convert2rhel inactive This is the base class for sosreport plugins. Plugins should subclass this and set the class variables where applicable. [...] Closes: #1952 Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/plugins/convert2rhel.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/convert2rhel.py b/sos/plugins/convert2rhel.py
index 833a9f34..2b5e8ae8 100644
--- a/sos/plugins/convert2rhel.py
+++ b/sos/plugins/convert2rhel.py
@@ -10,7 +10,8 @@ from sos.plugins import Plugin, RedHatPlugin
class convert2rhel(Plugin, RedHatPlugin):
-
+ """Convert2RHEL
+ """
plugin_name = 'convert2rhel'
profiles = ('system')
packages = ('convert2rhel')