aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2013-06-06 15:58:08 +0100
committerBryn M. Reeves <bmr@redhat.com>2013-06-06 15:58:08 +0100
commit641b1a7e34bea9fef35dc8a65a96d2adc6b55aee (patch)
tree466b5da1b69991ca506e7d8195637b50261df338
parent3abe8e91795f5774f03b178fb23c4d3d843ad25c (diff)
downloadsos-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.py2
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")