From 641b1a7e34bea9fef35dc8a65a96d2adc6b55aee Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Thu, 6 Jun 2013 15:58:08 +0100 Subject: 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 --- sos/plugins/sanlock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- cgit