From 7aa64e79dd24458e199d1a884def0e4ad1b7f79a Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Sun, 3 Jan 2021 03:49:19 +0100 Subject: [PATCH] Fix bug when process_list has a blank line --- install.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/install.py b/install.py index 1b7156d..0d14bd1 100755 --- a/install.py +++ b/install.py @@ -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)