From 6edec5e0ec70b3085b4ae089357fc2dbbf62080a Mon Sep 17 00:00:00 2001 From: Lartza Date: Tue, 19 Jun 2018 14:33:48 +0300 Subject: [PATCH] Most tags are lists --- mumbleBot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mumbleBot.py b/mumbleBot.py index 7abec0f..2ac90f2 100644 --- a/mumbleBot.py +++ b/mumbleBot.py @@ -325,7 +325,7 @@ class MumbleBot: mp3 = path.replace(".%(ext)s", ".mp3") if os.path.isfile(mp3): audio = EasyID3(mp3) - video_title = audio["title"] + video_title = audio["title"][0] else: ydl_opts = { 'format': 'bestaudio/best',