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)