Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/profiles.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-05-14 18:35:40 +0200
committerAnton Hvornum <anton@hvornum.se>2021-05-14 18:35:40 +0200
commit6e898217eec4d287cb8d8ee4f70720fed6f6b4c7 (patch)
tree510ddc1ad4d138dd86eff976a38ed1cd7e8a8583 /archinstall/lib/profiles.py
parent12dc55650d78dc41bbc0ab7013baa7b3ce61ec7c (diff)
parentd0676dfa3daf4f25fad01943fd22b8e3df42e7fb (diff)
Merge branch 'master' of github.com:archlinux/archinstall into torxed-fix-350
Diffstat (limited to 'archinstall/lib/profiles.py')
-rw-r--r--archinstall/lib/profiles.py2
1 files changed, 1 insertions, 1 deletions
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}