index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-11-11 20:17:48 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-11-11 20:17:48 +0000 |
commit | abfeeb8dd0cadadbe38310e96a61e31088652d82 (patch) | |
tree | f4aaf4c1cef6a92100f71b64947d721ce1766931 | |
parent | be2dd2b3cdaa54421ddb71093b604ad39d702afa (diff) |
-rw-r--r-- | examples/guided.py | 4 |
diff --git a/examples/guided.py b/examples/guided.py index 51ebeeef..4edc593e 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -185,10 +185,10 @@ while 1: # Optionally configure one network interface. while 1: - interfaces = archinstall.list_interfaces() + interfaces = archinstall.list_interfaces() # {MAC: Ifname} archinstall.storage['_guided']['network'] = None - nic = archinstall.generic_select(interfaces, "Select one network interface to configure (leave blank to skip): ") + nic = archinstall.generic_select(interfaces.values(), "Select one network interface to configure (leave blank to skip): ") if nic: mode = archinstall.generic_select(['DHCP (auto detect)', 'IP (static)'], f"Select which mode to configure for {nic}: ") if mode == 'IP (static)': |