From 79f70cee21c3ed74b2a7c274dee34843aa54f2c7 Mon Sep 17 00:00:00 2001 From: ギャラ Date: Wed, 18 Aug 2021 20:52:10 +0900 Subject: Update guided.py Fix wrong default in kernels. --- examples/guided.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/guided.py b/examples/guided.py index aebebcfa..91d0357c 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -334,7 +334,7 @@ def perform_installation(mountpoint): Only requirement is that the block devices are formatted and setup prior to entering this function. """ - with archinstall.Installer(mountpoint, kernels=archinstall.arguments.get('kernels', 'linux')) as installation: + with archinstall.Installer(mountpoint, kernels=archinstall.arguments.get('kernels', ['linux'])) as installation: # if len(mirrors): # Certain services might be running that affects the system during installation. # Currently, only one such service is "reflector.service" which updates /etc/pacman.d/mirrorlist -- cgit v1.2.3-54-g00ecf