diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2020-02-14 17:21:27 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2020-02-14 17:21:27 +0000 |
commit | edcffea000a2277a705f2b678980e361155ef862 (patch) | |
tree | 021cb5cc6ed70000cfd47ec6477c974975bff0c7 | |
parent | dfc855f83cf866d1d7d6b8f83bbe95d5c896b281 (diff) | |
download | sos-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.py | 3 |
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') |