From c7c414f32a56bb675f9d6b808daf609434fb1aa3 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Mon, 15 Aug 2011 18:35:32 +0300 Subject: Pass empty options as empty arrays for supported dns record types. https://fedorahosted.org/freeipa/ticket/1632 --- ipalib/plugins/dns.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ipalib/plugins/dns.py b/ipalib/plugins/dns.py index 105678b23..e967c5c03 100644 --- a/ipalib/plugins/dns.py +++ b/ipalib/plugins/dns.py @@ -886,6 +886,8 @@ class dnsrecord_mod(dnsrecord_mod_record): def pre_callback(self, ldap, dn, entry_attrs, *keys, **options): for rtype in options: rtype_cb = '_%s_pre_callback' % rtype + if options[rtype] is None and rtype in _record_attributes: + options[rtype] = [] if hasattr(self.obj, rtype_cb): dn = getattr(self.obj, rtype_cb)(ldap, dn, entry_attrs, *keys, **options) -- cgit