index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-05-14 16:13:03 +0200 |
---|---|---|
committer | Anton Hvornum <anton@hvornum.se> | 2021-05-14 16:13:03 +0200 |
commit | 1674b7088d66873712dea57f99d3221daad4db0b (patch) | |
tree | af5470d2b697f0d8ba60796f5f9c81735eb7ce0a /archinstall | |
parent | 4ff35663b80e1bb40c44d4ceee85700ef428cab0 (diff) |
-rw-r--r-- | archinstall/lib/profiles.py | 2 |
diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py index 1feba1cd..9225a129 100644 --- a/archinstall/lib/profiles.py +++ b/archinstall/lib/profiles.py @@ -36,7 +36,7 @@ def list_profiles(filter_irrelevant_macs=True, subpath='', filter_top_level_prof description = '' with open(os.path.join(root, file), 'r') as fh: first_line = fh.readline() - if first_line[0] == '#': + if len(first_line) and first_line[0] == '#': description = first_line[1:].strip() cache[file[:-3]] = {'path' : os.path.join(root, file), 'description' : description, 'tailored' : tailored} |