summaryrefslogtreecommitdiffstats
path: root/ipaserver/ipaldap.py
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-01-21 04:34:44 -0500
committerMartin Kosek <mkosek@redhat.com>2013-03-01 16:59:44 +0100
commitc613caab67337293a410c07713c89345d0124f2c (patch)
treefc0712cd0c5bcb367d53897679e4efdc030578b8 /ipaserver/ipaldap.py
parentb2dd8d7f0512dff47bd5b1b973da50dd56a2e99e (diff)
downloadfreeipa.git-c613caab67337293a410c07713c89345d0124f2c.tar.gz
freeipa.git-c613caab67337293a410c07713c89345d0124f2c.tar.xz
freeipa.git-c613caab67337293a410c07713c89345d0124f2c.zip
Replace entry.getValues() by entry.get()
Part of the work for: https://fedorahosted.org/freeipa/ticket/2660
Diffstat (limited to 'ipaserver/ipaldap.py')
-rw-r--r--ipaserver/ipaldap.py5
1 files changed, 0 insertions, 5 deletions
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"""