fixed typo

This commit is contained in:
advaithm 2021-04-04 09:03:49 +05:30
parent 9e3ded8311
commit 454d712d08
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,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: