From 909e226ab59f44115e4339b0da4866b0a2b95b68 Mon Sep 17 00:00:00 2001 From: levina <82658782+levina-lab@users.noreply.github.com> Date: Tue, 14 Sep 2021 04:30:32 +0700 Subject: [PATCH] fixes --- bot/song.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/song.py b/bot/song.py index e724384..6ef79ab 100644 --- a/bot/song.py +++ b/bot/song.py @@ -235,8 +235,8 @@ async def vsong(client, message): 'geo_bypass':True, 'outtmpl':'%(title)s.%(ext)s', 'quite':True -} -query = message.command[1] + } + query = message.command[1] try: results = YoutubeSearch(query, max_results=1).to_dict() link = f"https://youtube.com{results[0]['url_suffix']}"