index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | examples/guided.py | 4 |
diff --git a/examples/guided.py b/examples/guided.py index 84045b83..f1dff059 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -208,8 +208,8 @@ if nic: gateway = None dns = None - if len(dns := input('Enter your DNS servers (space separated, blank for none): ').strip()): - dns = dns.split(' ') + if len(dns_input := input('Enter your DNS servers (space separated, blank for none): ').strip()): + dns = dns_input.split(' ') archinstall.storage['_guided']['network'] = {'nic': nic, 'dhcp': False, 'ip': ip, 'gateway' : gateway, 'dns' : dns} else: |