aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2014-03-27 14:45:53 +0000
committerBryn M. Reeves <bmr@redhat.com>2014-03-27 14:45:53 +0000
commit2f7baff1e206831945c83894fbc0ba5250178b5b (patch)
tree23445600f6a990f47f00aba9b5f6320529e74b63
parentfbd60e01cfce143757b6de13aaf2209319f3eee9 (diff)
downloadsos-2f7baff1e206831945c83894fbc0ba5250178b5b.tar.gz
Drop RedHatPlugin from procenv
The procenv package is not shipped in Red Hat distributions so remove the RedHatPlugin tagging class from it. Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/plugins/procenv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/plugins/procenv.py b/sos/plugins/procenv.py
index e776e149..4367555f 100644
--- a/sos/plugins/procenv.py
+++ b/sos/plugins/procenv.py
@@ -13,9 +13,9 @@
## along with this program; if not, write to the Free Software
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin
+from sos.plugins import Plugin, DebianPlugin, UbuntuPlugin
-class Procenv(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
+class Procenv(Plugin, DebianPlugin, UbuntuPlugin):
"""Process environment.
"""