From 470478036278b5d4b87c61c053c561af317e3e94 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Sun, 27 Mar 2022 22:09:35 +0000 Subject: [PATCH] Typofix in variable name --- vpp/reconciler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpp/reconciler.py b/vpp/reconciler.py index be9475c..6e8d08a 100644 --- a/vpp/reconciler.py +++ b/vpp/reconciler.py @@ -770,7 +770,7 @@ class Reconciler(): config_rx_ifname, config_rx_iface = interface.get_by_name(self.cfg, ifname) config_tx_ifname, config_tx_iface = interface.get_by_name(self.cfg, config_rx_iface['l2xc']) vpp_rx_iface = None - vpp_rx_iface = None + vpp_tx_iface = None if config_rx_ifname in self.vpp.config['interface_names']: vpp_rx_iface = self.vpp.config['interface_names'][config_rx_ifname] if config_tx_ifname in self.vpp.config['interface_names']: