From e078b639d31b7df2ceb8fc591316b6194c000ac6 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sat, 17 Aug 2019 19:49:03 +0300 Subject: [PATCH] Minor change in dlmusic --- royalnet/commands/dlmusic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/royalnet/commands/dlmusic.py b/royalnet/commands/dlmusic.py index 91f316a4..33348afe 100644 --- a/royalnet/commands/dlmusic.py +++ b/royalnet/commands/dlmusic.py @@ -28,7 +28,7 @@ class DlmusicCommand(Command): else: vfiles = await asyncify(YtdlVorbis.create_and_ready_from_url, f"ytsearch:{url}", **ytdl_args) for vfile in vfiles: - await call.reply(f"⬇️ https://scaleway.steffo.eu/{urllib.parse.quote(vfile.vorbis_filename.replace('./downloads/', 'musicbot_cache/'))}") + await call.reply(f"⬇️ https://scaleway.steffo.eu/{urllib.parse.quote(vfile.vorbis_filename.replace('./downloads/', './musicbot_cache/'))}") await asyncio.sleep(seconds_before_deletion) for vfile in vfiles: vfile.delete()