From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] unbound-dhcp-leases-bridge: Migrate to Python 3 Date: Fri, 14 May 2021 12:53:11 +0100 Message-ID: <20210514115311.25256-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3543090604994365720==" List-Id: --===============3543090604994365720== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Michael Tremer --- config/unbound/unbound-dhcp-leases-bridge | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/unbound/unbound-dhcp-leases-bridge b/config/unbound/unbou= nd-dhcp-leases-bridge index e3da4860b..2d8ef1387 100644 --- a/config/unbound/unbound-dhcp-leases-bridge +++ b/config/unbound/unbound-dhcp-leases-bridge @@ -178,8 +178,8 @@ class UnboundDHCPLeasesBridge(object): =20 # Dump everything in the logs log.debug("Static hosts:") - for hostname, addresses in hosts.items(): - log.debug(" %-20s : %s" % (hostname, ", ".join(addresses))) + for name in hosts: + log.debug(" %-20s : %s" % (name, ", ".join(hosts[name]))) =20 return hosts =20 @@ -402,9 +402,9 @@ class Lease(object): =20 address =3D ipaddress.ip_address(self.ipaddr) =20 - for subnet, domain in subnets.items(): + for subnet in subnets: if address in subnet: - return domain + return subnets[subnet] =20 # Fall back to localdomain if no match could be found return "localdomain" --=20 2.31.0 --===============3543090604994365720==--