From 04636b8ae7b759291fe0c49991b3df760d6ad4c2 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 22 Oct 2007 17:06:52 -0400 Subject: Add an LDAP attribute -> label mapping function to XML-RPC layer Move some ACI functions around in preparation for cli delegation --- ipa-python/ipaclient.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ipa-python/ipaclient.py') diff --git a/ipa-python/ipaclient.py b/ipa-python/ipaclient.py index b9439ecd..a7bd8183 100644 --- a/ipa-python/ipaclient.py +++ b/ipa-python/ipaclient.py @@ -311,3 +311,8 @@ class IPAClient: """ return self.transport.add_group_to_group(group_cn, tgroup_cn) + + def attrs_to_labels(self,attrs): + """Convert a list of LDAP attributes into a more readable form.""" + + return self.transport.attrs_to_labels(attrs) -- cgit