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)