From e319ea4762fd49510c005bcfe331fbdf3999e2f1 Mon Sep 17 00:00:00 2001 From: Twentysix Date: Tue, 20 Dec 2016 19:40:29 +0100 Subject: [PATCH] [Audio] Hotfix --- cogs/audio.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/audio.py b/cogs/audio.py index 92431df54..6848d366f 100644 --- a/cogs/audio.py +++ b/cogs/audio.py @@ -1234,7 +1234,7 @@ class Audio: playlists = ", ".join(self._list_local_playlists()) if playlists: playlists = "Available local playlists:\n\n" + playlists - for page in pagify(playlists): + for page in pagify(playlists, delims=[" "]): await self.bot.say(page) else: await self.bot.say("There are no playlists.") @@ -1441,7 +1441,7 @@ class Audio: playlists = ", ".join(self._list_playlists(server)) if playlists: playlists = "Available playlists:\n\n" + playlists - for page in pagify(playlists): + for page in pagify(playlists, delims=[" "]): await self.bot.say(page) else: await self.bot.say("There are no playlists.")