Re: [Freeipa-devel] [PATCH 0040] Use super() properly to avoid an exception

2014-02-21 Thread Petr Viktorin

On 02/21/2014 03:51 PM, Alexander Bokovoy wrote:

On Fri, 21 Feb 2014, Nathaniel McCallum wrote:

https://fedorahosted.org/freeipa/ticket/4099



From b77bf5c7fdacc7b0224033d608d387be282f98bc Mon Sep 17 00:00:00 2001

From: Nathaniel McCallum 
Date: Thu, 20 Feb 2014 13:20:01 -0500
Subject: [PATCH] Use super() properly to avoid an exception

https://fedorahosted.org/freeipa/ticket/4099



ACK.




Pushed to master: 70e2217d7301185713b7d7391c7f1018f7d0d523

--
PetrĀ³

___
Freeipa-devel mailing list
Freeipa-devel@redhat.com
https://www.redhat.com/mailman/listinfo/freeipa-devel


Re: [Freeipa-devel] [PATCH 0040] Use super() properly to avoid an exception

2014-02-21 Thread Alexander Bokovoy

On Fri, 21 Feb 2014, Nathaniel McCallum wrote:

https://fedorahosted.org/freeipa/ticket/4099



From b77bf5c7fdacc7b0224033d608d387be282f98bc Mon Sep 17 00:00:00 2001

From: Nathaniel McCallum 
Date: Thu, 20 Feb 2014 13:20:01 -0500
Subject: [PATCH] Use super() properly to avoid an exception

https://fedorahosted.org/freeipa/ticket/4099
---
ipalib/plugins/otptoken.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ipalib/plugins/otptoken.py b/ipalib/plugins/otptoken.py
index 
77c17150d83f0562823698e1ad585ec523f16ad7..8e76ada907c161ffc6a7e83c02d41daa5849e515
 100644
--- a/ipalib/plugins/otptoken.py
+++ b/ipalib/plugins/otptoken.py
@@ -80,7 +80,7 @@ class OTPTokenKey(Bytes):
except TypeError, e:
raise ConversionError(name=self.name, index=index, error=str(e))

-return Bytes._convert_scalar(value, index)
+return super(OTPTokenKey, self)._convert_scalar(value, index)

def _convert_owner(userobj, entry_attrs, options):
if 'ipatokenowner' in entry_attrs and not options.get('raw', False):


ACK.


--
/ Alexander Bokovoy

___
Freeipa-devel mailing list
Freeipa-devel@redhat.com
https://www.redhat.com/mailman/listinfo/freeipa-devel