From fc22e5487dc7bfdba7707d420c5f465d41a03133 Mon Sep 17 00:00:00 2001 From: elpatron68 Date: Sun, 28 Jul 2019 15:37:46 +0200 Subject: [PATCH] Fix wrong placed --- mumbleBot.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mumbleBot.py b/mumbleBot.py index efa8268..3ad75af 100644 --- a/mumbleBot.py +++ b/mumbleBot.py @@ -387,8 +387,8 @@ class MumbleBot: genre = s['genre'] # msg += f'{stationid}{stationname}{genre}{codec}/{bitrate}{country}' msg += '%s%s%s%s/%s%s' % (stationid, stationname, genre, codec, bitrate, country) - msg += '' - # Full message as html table + msg += '' + # Full message as html table if len(msg) <= 5000: self.send_msg(msg, text) # Shorten message if message too long (stage I) @@ -401,6 +401,7 @@ class MumbleBot: stationname = s['stationname'] # msg += f'{stationid}{stationname}' msg += '%s%s' % (stationid, stationname) + msg += '' if len(msg) <= 5000: self.send_msg(msg, text) # Shorten message if message too long (stage II)