From 70af00f33dd903e1bc70a996854861038a2d919c Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Wed, 15 Sep 2021 19:23:35 +0200 Subject: Tweaked the logic for parsing the --harddrives parameter. --- examples/guided.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'examples/guided.py') diff --git a/examples/guided.py b/examples/guided.py index b3f1b14b..b0f6f699 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -113,8 +113,7 @@ def ask_user_questions(): # and convert them into archinstall.BlockDevice() objects. if archinstall.arguments.get('harddrives', None): if type(archinstall.arguments['harddrives']) is str: - archinstall.arguments['harddrives'] = archinstall.arguments['harddrives'].split(',') - archinstall.arguments['harddrives'] = [archinstall.BlockDevice(BlockDev) for BlockDev in archinstall.arguments['harddrives']] + archinstall.arguments['harddrives'] = [archinstall.BlockDevice(BlockDev) for BlockDev in archinstall.arguments['harddrives'].split(',')] else: archinstall.arguments['harddrives'] = archinstall.generic_multi_select(archinstall.all_disks(), text="Select one or more harddrives to use and configure (leave blank to skip this step): ", -- cgit v1.2.3-54-g00ecf