From a7b0ca3557e9a147fb315cee783ca4c67cb8c4cc Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 31 Jul 2024 23:17:08 -0700 Subject: [PATCH] Update system.py --- modules/system.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/system.py b/modules/system.py index c99172e..efdf226 100644 --- a/modules/system.py +++ b/modules/system.py @@ -203,8 +203,8 @@ def get_node_list(nodeInt=1): short_node_list.append(f"{x[0]} SNR:{x[2]}") for x in short_node_list: - node_list += x + "\n" - node_list = node_list[:-1] # remove the last newline + if x != "" or x != '\n': + node_list += x + "\n" return node_list