diff --git a/commands/now_playing.py b/commands/now_playing.py index 8266f12..a7ffc24 100644 --- a/commands/now_playing.py +++ b/commands/now_playing.py @@ -86,8 +86,7 @@ def setup(bot: bot.Bot): cover_art = albumobj.get_cover_image() if not cover_art: await ctx.send(u.error_msg(f"**{albumobj.get_name()}** does not seem to have cover art.")) - else: await ctx.send(f"Here's the cover art for **[{albumobj.get_name()}]({albumobj.get_url()})**:\ - {cover_art}") + else: await ctx.send(f"Here's the cover art for **[{albumobj.get_name()}]({albumobj.get_url()})**:\n{cover_art}") except Exception as e: print(e)