summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins
diff options
context:
space:
mode:
authorPavel Zuna <pzuna@redhat.com>2010-01-12 16:33:16 +0100
committerRob Crittenden <rcritten@redhat.com>2010-01-20 16:53:28 -0500
commitcfe47a35531d841a0a765943aac1296a2a3ac99b (patch)
treeb224804f8af8da7fb5c72774e4059fec802a5542 /ipalib/plugins
parent54631247a7adcaeb60ad1b7b58ffef2e151c386d (diff)
downloadfreeipa-cfe47a35531d841a0a765943aac1296a2a3ac99b.tar.gz
freeipa-cfe47a35531d841a0a765943aac1296a2a3ac99b.tar.xz
freeipa-cfe47a35531d841a0a765943aac1296a2a3ac99b.zip
Temporary fix for name collision of textui.print_entry.
Somehow there's two of them... rename old one to print_entry1.
Diffstat (limited to 'ipalib/plugins')
-rw-r--r--ipalib/plugins/baseldap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/plugins/baseldap.py b/ipalib/plugins/baseldap.py
index 0e4eed1b3..17db04826 100644
--- a/ipalib/plugins/baseldap.py
+++ b/ipalib/plugins/baseldap.py
@@ -111,7 +111,7 @@ class LDAPObject(Object):
def print_entry(self, textui, entry, *keys, **options):
if options.get('raw', False):
textui.print_attribute('dn', entry[0])
- textui.print_entry(entry[1], attr_order=self.attribute_order)
+ textui.print_entry1(entry[1], attr_order=self.attribute_order)
else:
if self.primary_key and keys[-1] is not None:
textui.print_attribute(
@@ -123,7 +123,7 @@ class LDAPObject(Object):
for a in self.hidden_attributes:
if a in entry_attrs:
del entry_attrs[a]
- textui.print_entry(
+ textui.print_entry1(
entry_attrs, attr_map=self.attribute_names,
attr_order=self.attribute_order, one_value_per_line=False
)