summaryrefslogtreecommitdiff
path: root/src/conf_mode/interfaces-wwan.py
diff options
context:
space:
mode:
authorDate Huang <tjjh89017@hotmail.com>2022-07-29 22:43:17 +0800
committerDate Huang <tjjh89017@hotmail.com>2022-07-29 22:43:17 +0800
commit10287b4a2b30a2dfa42a58ac07176dc5e01a64f4 (patch)
tree91fcc9eb5d8f1d773d812ede5c7e1ef27ff5ff43 /src/conf_mode/interfaces-wwan.py
parentb33de0bac8172f3571ffc6d46b87de0c906e1b48 (diff)
downloadvyos-1x-10287b4a2b30a2dfa42a58ac07176dc5e01a64f4.tar.gz
vyos-1x-10287b4a2b30a2dfa42a58ac07176dc5e01a64f4.zip
T4577: wwan: fix incorrect return value unpacking
Signed-off-by: Date Huang <tjjh89017@hotmail.com>
Diffstat (limited to 'src/conf_mode/interfaces-wwan.py')
-rwxr-xr-xsrc/conf_mode/interfaces-wwan.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/interfaces-wwan.py b/src/conf_mode/interfaces-wwan.py
index e275ace84..97b3a6396 100755
--- a/src/conf_mode/interfaces-wwan.py
+++ b/src/conf_mode/interfaces-wwan.py
@@ -76,7 +76,7 @@ def get_config(config=None):
# We need to know the amount of other WWAN interfaces as ModemManager needs
# to be started or stopped.
conf.set_level(base)
- _, wwan['other_interfaces'] = conf.get_config_dict([], key_mangling=('-', '_'),
+ wwan['other_interfaces'] = conf.get_config_dict([], key_mangling=('-', '_'),
get_first_key=True,
no_tag_node_value_mangle=True)