Fix bug when process_list has a blank line
This commit is contained in:
parent
c77d4d210e
commit
7aa64e79dd
1 changed files with 4 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue