From c613caab67337293a410c07713c89345d0124f2c Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Mon, 21 Jan 2013 04:34:44 -0500 Subject: Replace entry.getValues() by entry.get() Part of the work for: https://fedorahosted.org/freeipa/ticket/2660 --- ipaserver/ipaldap.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'ipaserver/ipaldap.py') diff --git a/ipaserver/ipaldap.py b/ipaserver/ipaldap.py index 0724e224..8a4e7ee9 100644 --- a/ipaserver/ipaldap.py +++ b/ipaserver/ipaldap.py @@ -697,11 +697,6 @@ class LDAPEntry(dict): yield self._dn yield self - def getValues(self, name): - # FIXME: for backwards compatibility only - """Get the list (array) of values for the attribute named name""" - return self.data.get(name) - def getValue(self, name, default=None): # FIXME: for backwards compatibility only """Get the first value for the attribute named name""" -- cgit