diff options
author | Adam Stokes <hackr@cypherbook.com> | 2013-03-25 13:40:53 -0400 |
---|---|---|
committer | Adam Stokes <hackr@cypherbook.com> | 2013-03-25 13:40:53 -0400 |
commit | a98d93dce62033bf11f32bec4e316339d23ff671 (patch) | |
tree | 0b3476bce7bbadb8096040bc6c95001153c586cc | |
parent | fc0bcf99630f2d80d89100fcc16a63f1a442d834 (diff) | |
download | sos-a98d93dce62033bf11f32bec4e316339d23ff671.tar.gz |
Inherit system within DebianSystem plugin
Signed-off-by: Adam Stokes <hackr@cypherbook.com>
-rw-r--r-- | sos/plugins/system.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/system.py b/sos/plugins/system.py index 3cece4cc..7aade419 100644 --- a/sos/plugins/system.py +++ b/sos/plugins/system.py @@ -39,7 +39,7 @@ class SystemRedHat(system, RedHatPlugin): self.addCmdOutput("/usr/bin/crontab -l") -class SystemDebian(Plugin, DebianPlugin, UbuntuPlugin): +class SystemDebian(system, DebianPlugin, UbuntuPlugin): """core system related information for Debian and Ubuntu """ def setup(self): |