diff options
author | Adam Stokes <hackr@cypherbook.com> | 2012-03-09 16:54:31 -0500 |
---|---|---|
committer | Adam Stokes <hackr@cypherbook.com> | 2012-03-09 16:54:31 -0500 |
commit | 94eab96e2b4ae6f4091b3af009b1b129f3935c6c (patch) | |
tree | 899c33f8139fdc4c79f040de9a524b6bfc638154 | |
parent | 1d3c2fa95ad75d87c412b07f43143f35f8138687 (diff) | |
download | sos-94eab96e2b4ae6f4091b3af009b1b129f3935c6c.tar.gz |
sos/plugins/sssd: Typo fix on DebianSssd inheritance
Signed-off-by: Adam Stokes <hackr@cypherbook.com>
-rw-r--r-- | sos/plugins/sssd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/sssd.py b/sos/plugins/sssd.py index a1ffe998..fae9b8b7 100644 --- a/sos/plugins/sssd.py +++ b/sos/plugins/sssd.py @@ -33,7 +33,7 @@ class RedHatSssd(sssd, RedHatPlugin): def setup(self): super(RedHatSssd, self).setup() -class DebianSssd(sssd, DebianPlugin, RedHatPlugin): +class DebianSssd(sssd, DebianPlugin, UbuntuPlugin): """sssd-related Diagnostic Information on Debian based distributions """ |