Fix bug when process_list has a blank line

This commit is contained in:
flyingscorpio@arch-desktop 2021-01-03 03:49:19 +01:00
parent c77d4d210e
commit 7aa64e79dd

View file

@ -438,14 +438,16 @@ class Installer:
def read_programs_from_process_list() -> List[str]:
"""Read the process_list file to return a list of programs to process."""
ui.info("Found these programs in 'process_list.txt':")
with open("process_list.txt", "r") as process_file:
content = process_file.readlines()
programs = [
line.strip() for line in content if not line.startswith("#") and len(line) > 0
line.strip()
for line in content
if not line.startswith("#") and len(line.strip()) > 0
]
ui.info("Found these programs in 'process_list.txt':")
for program in programs:
ui.info_1(program)