On 18.12.2015 14:11, David Kupka wrote:
On 18/12/15 13:57, David Kupka wrote:
On 17/12/15 13:44, Jan Cholasta wrote:
On 17.12.2015 13:26, David Kupka wrote:
On 17/12/15 12:14, Petr Vobornik wrote:
On 12/16/2015 02:31 PM, David Kupka wrote:
https://www.redhat.com/archives/freeipa-users/2015-December/msg00203.html






please link the patch to https://fedorahosted.org/freeipa/ticket/5556

Updated patches attached.

NACK, this is the correct procedure for the __getattr__(), sorry for
confusing you earlier:

     def __getattr__(self, name):
         for owner_cls, knob_name in self.knobs():
             if knob_name == name:
                 break
         else:
             raise AttributeError(name)

         for component in self.__components:
             if isinstance(component, owner_cls):
                 break
         else:
             raise AttributeError(name)

         return getattr(component, name)

Honza

Updated patches attached.

Completing the update.

Thanks, ACK.

Not pushed yet because ipa-4-3 is cursed.

Honza

--
Jan Cholasta

--
Manage your subscription for the Freeipa-devel mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-devel
Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code

Reply via email to