fixed typo

This commit is contained in:
advaithm 2021-04-04 09:03:49 +05:30 committed by Dylan Taylor
parent 55622fd79d
commit 75a36e2fdc
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ def ask_to_configure_network():
if len(dns_input := input('Enter your DNS servers (space separated, blank for none): ').strip()):
dns = dns_input.split(' ')
return {'nic': nic, 'dhcp': False, 'ip': ip, 'gateway' : gateway, 'dns' : dns}s
return {'nic': nic, 'dhcp': False, 'ip': ip, 'gateway' : gateway, 'dns' : dns}
else:
return {'nic': nic,'NetworkManager':True}
elif nic: