summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/plugins/dns.py
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2013-10-31 16:55:07 +0000
committerPetr Viktorin <pviktori@redhat.com>2014-01-24 20:29:31 +0100
commit97c1c95f20762055932a83cb7ac08a408437a661 (patch)
tree45fe75881605384be220c4fab7d226f42d3077ce /ipaserver/install/plugins/dns.py
parent08051f16516a3978494ae94032d55cc8b1426df9 (diff)
downloadfreeipa-97c1c95f20762055932a83cb7ac08a408437a661.tar.gz
freeipa-97c1c95f20762055932a83cb7ac08a408437a661.tar.xz
freeipa-97c1c95f20762055932a83cb7ac08a408437a661.zip
Convert remaining update code to LDAPEntry API.
Diffstat (limited to 'ipaserver/install/plugins/dns.py')
-rw-r--r--ipaserver/install/plugins/dns.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/plugins/dns.py b/ipaserver/install/plugins/dns.py
index b875ff019..6e6c52f26 100644
--- a/ipaserver/install/plugins/dns.py
+++ b/ipaserver/install/plugins/dns.py
@@ -160,7 +160,7 @@ class update_dns_limits(PostUpdate):
self.env.basedn)
try:
- (dn, entry) = ldap.get_entry(dns_service_dn, self.limit_attributes)
+ entry = ldap.get_entry(dns_service_dn, self.limit_attributes)
except errors.NotFound:
# this host may not have DNS service set
root_logger.debug("DNS: service %s not found, no need to update limits" % dns_service_dn)