From 93a9b4d2795665d568c0ff9403d6f946ebc19dbb Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Fri, 3 Jul 2015 15:45:45 +0100 Subject: [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 --- sos/plugins/__init__.py | 14 ++++++-------- 1 file 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 -- cgit