From 5c28387a99b7843dfb2948e0566ad168203c1839 Mon Sep 17 00:00:00 2001 From: TheScriptPony Date: Thu, 17 Dec 2020 17:21:45 -0500 Subject: [PATCH] Fixed newlines --- memeify/memeify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memeify/memeify.py b/memeify/memeify.py index 3d33144..3562141 100644 --- a/memeify/memeify.py +++ b/memeify/memeify.py @@ -36,7 +36,7 @@ class Memeify(commands.Cog): def __bify(self, bify_str, cmd) -> str: mention = re.compile("^@|^#|^&") custom_emoji = re.compile("<:[^:]+:\d{18}>") - bify = bify_str.split() + bify = bify_str.split(" ") # remove first letter if it bifys the command message itself if cmd: bify.pop(0)