index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-11-11 22:11:13 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-11-11 22:11:13 +0000 |
commit | f6460b8634d2ac3bbdec5e7dc542b07ac1badea5 (patch) | |
tree | a0fe7d1b10295ef57711b6420293f70d9e69f5bd /examples | |
parent | 72f9c07e439eb2dac0bfc385db4b465fb9c44b7a (diff) |
-rw-r--r-- | examples/guided.py | 4 |
diff --git a/examples/guided.py b/examples/guided.py index 6c8f59c8..8378fc6b 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -82,8 +82,8 @@ archinstall.sys_command(f'cryptsetup close /dev/mapper/luksloop', suppress_error will we continue with the actual installation steps. """ -keyboard_language = archinstall.select_language(archinstall.list_keyboard_languages()) -archinstall.set_keyboard_language(keyboard_language) +if len(keyboard_language := archinstall.select_language(archinstall.list_keyboard_languages()).strip()): + archinstall.set_keyboard_language(keyboard_language) # Create a storage structure for all our information. # We'll print this right before the user gets informed about the formatting timer. |