Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2019-11-27 23:28:25 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2019-11-27 23:28:25 +0000
commit59994c1ffdcc916f782d50e248316790fec70974 (patch)
tree02d346965d9f56a3515d4f2b4fe2f6a6f2efc670
parentc5d9be669dc6241f94c458bfd8b565b293549695 (diff)
Fixes issue on line 944. list has no attribute 'split'
-rw-r--r--archinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index 8def7adb..725d05ee 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -1211,7 +1211,7 @@ if __name__ == '__main__':
if 'mirrors' in args and args['mirrors'] and 'country' in args and get_default_gateway_linux():
print('[N] Reordering mirrors.')
- filter_mirrors_by_country_list([args['country']])
+ filter_mirrors_by_country_list(args['country'])
pre_conf = {}
if 'pre' in instructions: