From 10287b4a2b30a2dfa42a58ac07176dc5e01a64f4 Mon Sep 17 00:00:00 2001 From: Date Huang Date: Fri, 29 Jul 2022 22:43:17 +0800 Subject: T4577: wwan: fix incorrect return value unpacking Signed-off-by: Date Huang --- src/conf_mode/interfaces-wwan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3