diff options
author | Louis Bouchard <louis.bouchard@canonical.com> | 2013-04-02 16:59:35 +0200 |
---|---|---|
committer | Louis Bouchard <louis.bouchard@canonical.com> | 2013-04-02 16:59:35 +0200 |
commit | 612803200ef500c157528b6a70002832da41b754 (patch) | |
tree | 6514bdcc43f7c3dbf21b3ee598900c25c355934a | |
parent | 2fcb1f4a6fbf5abda746bf1470edb55ccc6b01a6 (diff) | |
download | sos-612803200ef500c157528b6a70002832da41b754.tar.gz |
Fixed Class name inversion
-rw-r--r-- | sos/plugins/general.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/plugins/general.py b/sos/plugins/general.py index 62c7e441..ef78bde1 100644 --- a/sos/plugins/general.py +++ b/sos/plugins/general.py @@ -94,7 +94,7 @@ class DebianGeneral(general, DebianPlugin, UbuntuPlugin): """Basic system information for Debian based distributions""" def setup(self): - super(GeneralDebian, self).setup() + super(DebianGeneral, self).setup() self.addCopySpecs([ "/etc/debian_version", "/etc/default", @@ -105,7 +105,7 @@ class UbuntuGeneral(general, UbuntuPlugin): """Basic system information for Ubuntu based distributions""" def setup(self): - super(GeneralUbuntu, self).setup() + super(UbuntuGeneral, self).setup() self.addCopySpecs([ "/etc/os-release", "/var/log/ufw.log", |