From 8c5cc65a50ceceed68884a5e48ec299be334b12d Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 27 Mar 2022 15:05:46 -0400 Subject: [PATCH] no new line at the end of display profiles --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 012c86e..e30a7fd 100644 --- a/bot.py +++ b/bot.py @@ -542,7 +542,7 @@ class Bot(commands.Bot): f"\tMode:\t\t\t\t\t{config[section]['Mode']}\n" \ f"\tFrequency:\t\t\t{config[section]['Frequency']}\n" try: - message_body += f"\tNoisegate Sensitivity:\t{config[section]['Noisegate_Sensitivity']}" + message_body += f"\tNoisegate Sensitivity:\t{config[section]['Noisegate_Sensitivity']}\n" except KeyError: print(f"Config does not contain a 'noisegate sensitivity' value. Please load the profile")