From 57c41207a55f6cff0c406d7a022e7024940fb638 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sat, 20 Jul 2024 00:36:47 -0700 Subject: [PATCH] tuple --- modules/system.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/system.py b/modules/system.py index 84ff568..a8fc597 100644 --- a/modules/system.py +++ b/modules/system.py @@ -86,13 +86,13 @@ if bbs_enabled: dad_jokes_enabled = config['general'].getboolean('DadJokes', False) if dad_jokes_enabled: from dadjokes import Dadjoke # pip install dadjokes - trap_list = trap_list + "joke" + trap_list = trap_list + ("joke",) help_message = help_message + ", joke" # Store and Forward Configuration store_forward_enabled = config['general'].getboolean('StoreForward', False) if store_forward_enabled: - trap_list = trap_list + "messages" + trap_list = trap_list + ("messages",) help_message = help_message + ", messages" #Get the node number of the device, check if the device is connected