diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2013-06-06 15:58:08 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2013-06-06 15:58:08 +0100 |
commit | 641b1a7e34bea9fef35dc8a65a96d2adc6b55aee (patch) | |
tree | 466b5da1b69991ca506e7d8195637b50261df338 | |
parent | 3abe8e91795f5774f03b178fb23c4d3d843ad25c (diff) | |
download | sos-641b1a7e34bea9fef35dc8a65a96d2adc6b55aee.tar.gz |
Fix superclass initialiser invocation in sanlock
The RedHatSANLock initialiser used the wrong class name when
determining the parent class initialiser to invoke.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/sanlock.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/sanlock.py b/sos/plugins/sanlock.py index 67474af8..232dd007 100644 --- a/sos/plugins/sanlock.py +++ b/sos/plugins/sanlock.py @@ -32,5 +32,5 @@ class RedHatSANLock(SANLock, RedHatPlugin): files = [ "/etc/sysconfig/sanlock" ] def setup(self): - super(RedHatSanlock, self).setup() + super(RedHatSANLock, self).setup() self.add_copy_spec("/etc/sysconfig/sanlock") |