Skip to content

Commit 59994c1

Browse files
committed
Fixes issue on line 944. list has no attribute 'split'
1 parent c5d9be6 commit 59994c1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

archinstall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1211,7 +1211,7 @@ def run_post_install_steps(*positionals, **kwargs):
12111211

12121212
if 'mirrors' in args and args['mirrors'] and 'country' in args and get_default_gateway_linux():
12131213
print('[N] Reordering mirrors.')
1214-
filter_mirrors_by_country_list([args['country']])
1214+
filter_mirrors_by_country_list(args['country'])
12151215

12161216
pre_conf = {}
12171217
if 'pre' in instructions:

0 commit comments

Comments
 (0)