From ab770e402afaaba9cad461d40648109d205a89aa Mon Sep 17 00:00:00 2001 From: up-n-atom Date: Thu, 17 Aug 2023 18:09:37 -0400 Subject: [PATCH] Fix missing string end quote --- xmo-cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmo-cli.py b/xmo-cli.py index 6b1b971..b2cd65a 100755 --- a/xmo-cli.py +++ b/xmo-cli.py @@ -97,7 +97,7 @@ async def set_dns_servers(client: SagemcomClient, dns_servers: tuple[IPv4Address await client.set_value_by_xpath(f"Device/DNS/Relay/Forwardings/Forwarding[@uid={i}]/DNSServer", dns_server) iface = 'Device/IP/Interfaces/Interface[IP_DATA]' if dns_server.is_private: - iface = 'Device/IP/Interfaces/Interface[IP_BR_LAN] + iface = 'Device/IP/Interfaces/Interface[IP_BR_LAN]' await client.set_value_by_xpath( f"Device/DNS/Relay/Forwardings/Forwarding[@uid={i}]/Interface", iface