summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/ldapupdate.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipaserver/install/ldapupdate.py')
-rw-r--r--ipaserver/install/ldapupdate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/ldapupdate.py b/ipaserver/install/ldapupdate.py
index 01a8d78be..3d97f2222 100644
--- a/ipaserver/install/ldapupdate.py
+++ b/ipaserver/install/ldapupdate.py
@@ -551,7 +551,7 @@ class LDAPUpdate:
and child in the wrong order.
"""
dn = updates['dn']
- updates = updates['updates']
+ updates = updates.get('updates', [])
for u in updates:
# We already do syntax-parsing so this is safe
(utype, k, values) = u.split(':',2)