From a69b0b06029a7532d34a0c06a6bbe4b621eee458 Mon Sep 17 00:00:00 2001 From: Blergo Date: Tue, 2 Jul 2024 18:47:56 +0100 Subject: [PATCH] fixed missing space in Ram usage message --- command_handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command_handlers.py b/command_handlers.py index 4de1961..10a8142 100644 --- a/command_handlers.py +++ b/command_handlers.py @@ -115,7 +115,7 @@ def handle_stats_steps(sender_id, message, step, interface, bbs_nodes): time.sleep(0.1) cpu = str(psutil.cpu_percent()/psutil.cpu_count()) ram = str(psutil.virtual_memory().percent) - response = "CPU: " + cpu + "%\nRAM:" + ram + "%" + response = "CPU: " + cpu + "%\nRAM: " + ram + "%" send_message(response, sender_id, interface) handle_stats_command(sender_id, interface) return