From ed579a07ed8e958f11da0117be9d5fc6fd918fed Mon Sep 17 00:00:00 2001 From: Lord Anton Hvornum Date: Sun, 8 Nov 2020 19:36:29 +0100 Subject: Fixing issues with lists being passed instead of strings --- examples/guided.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/guided.py') diff --git a/examples/guided.py b/examples/guided.py index b5b54a85..d9dd0ac6 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -52,8 +52,8 @@ def perform_installation(device, boot_partition, language, mirrors): if len(archinstall.storage['_guided']['packages']) and archinstall.storage['_guided']['packages'][0] != '': installation.add_additional_packages(archinstall.storage['_guided']['packages']) - if archinstall.storage['_guided']['profile'] and len(archinstall.storage['_guided']['profile'].strip()): - installation.install_profile(archinstall.storage['_guided']['profile']) + if 'profile' in archinstall.storage['_guided'] and len(profile := archinstall.storage['_guided']['profile']['path'].strip()): + installation.install_profile(profile) for user, password in archinstall.storage['_guided']['users'].items(): sudo = False -- cgit v1.2.3-70-g09d2