diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2015-07-03 15:45:45 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2015-07-03 15:45:45 +0100 |
commit | 93a9b4d2795665d568c0ff9403d6f946ebc19dbb (patch) | |
tree | faa6f7c50b323ad99b4f3ee3cb49c01a7116bb95 | |
parent | 8cded9af8d1d75f4896699f83ae3ce289337dd6b (diff) | |
download | sos-93a9b4d2795665d568c0ff9403d6f946ebc19dbb.tar.gz |
[plugin] shorten tagging class docstrings
The various tagging class docstrings had become a bit long-winded.
Shorten the text used down as the mechanism itself is generally
well-understood.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/__init__.py | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/sos/plugins/__init__.py b/sos/plugins/__init__.py index 966a268f..e50e0d31 100644 --- a/sos/plugins/__init__.py +++ b/sos/plugins/__init__.py @@ -741,34 +741,32 @@ class Plugin(object): class RedHatPlugin(object): - """Tagging class to indicate that this plugin works with Red Hat Linux""" + """Tagging class for Red Hat's Linux distributions""" pass class PowerKVMPlugin(RedHatPlugin): - """Tagging class to indicate that this plugin works with - IBM PowerKVM Linux""" + """Tagging class for IBM PowerKVM Linux""" pass class ZKVMPlugin(RedHatPlugin): - """Tagging class to indicate that this plugin works with - IBM ZKVM Linux""" + """Tagging class for IBM ZKVM Linux""" pass class UbuntuPlugin(object): - """Tagging class to indicate that this plugin works with Ubuntu Linux""" + """Tagging class for Ubuntu Linux""" pass class DebianPlugin(object): - """Tagging class to indicate that this plugin works with Debian Linux""" + """Tagging class for Debian Linux""" pass class IndependentPlugin(object): - """Tagging class that indicates this plugin can run on any platform""" + """Tagging class for plugins that can run on any platform""" pass |