summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/ldapupdate.py
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-01-28 07:33:51 -0500
committerMartin Kosek <mkosek@redhat.com>2013-03-01 16:59:45 +0100
commit66eaf1220da3e3fccd54b8f6a54f7d116818b024 (patch)
treee3111f7920c86fd1828232264613b5c6ef3c625d /ipaserver/install/ldapupdate.py
parent6eeb5ecbead539c684d20fc02b340bc8aa1cc8b8 (diff)
downloadfreeipa.git-66eaf1220da3e3fccd54b8f6a54f7d116818b024.tar.gz
freeipa.git-66eaf1220da3e3fccd54b8f6a54f7d116818b024.tar.xz
freeipa.git-66eaf1220da3e3fccd54b8f6a54f7d116818b024.zip
Remove special-casing for missing and single-valued attributes in LDAPUpdate._entry_to_entity
Diffstat (limited to 'ipaserver/install/ldapupdate.py')
-rw-r--r--ipaserver/install/ldapupdate.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/ipaserver/install/ldapupdate.py b/ipaserver/install/ldapupdate.py
index 23d332d3..55f0ecaf 100644
--- a/ipaserver/install/ldapupdate.py
+++ b/ipaserver/install/ldapupdate.py
@@ -246,12 +246,6 @@ class LDAPUpdate:
def _entry_to_entity(self, ent):
entry = ent.copy()
- for key,value in entry.iteritems():
- if isinstance(value,list) or isinstance(value,tuple):
- if len(value) == 0:
- entry[key] = ''
- elif len(value) == 1:
- entry[key] = value[0]
entry.commit()
return entry