From edcffea000a2277a705f2b678980e361155ef862 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Fri, 14 Feb 2020 17:21:27 +0000 Subject: [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 --- sos/plugins/convert2rhel.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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') -- cgit