From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: Re: [PATCH] unbound-dhcp-leases-bridge: Migrate to Python 3 Date: Fri, 14 May 2021 15:01:49 +0200 Message-ID: <7ca3ab7e-6df8-9461-bd7d-f64f782f9731@ipfire.org> In-Reply-To: <20210514115311.25256-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7160531214833625361==" List-Id: --===============7160531214833625361== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hello Michael, um, isn't it necessary to update the shebang of this script as well? Apart from that: Acked-by: Peter M=C3=BCller Thanks, and best regards, Peter M=C3=BCller > Signed-off-by: Michael Tremer > --- > config/unbound/unbound-dhcp-leases-bridge | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) >=20 > diff --git a/config/unbound/unbound-dhcp-leases-bridge b/config/unbound/unb= ound-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 --===============7160531214833625361==--