From a7430a9dbd608935c8859147353bb4758312feb5 Mon Sep 17 00:00:00 2001 From: phxntxm Date: Tue, 12 Jul 2016 11:30:47 -0500 Subject: [PATCH] stripped tag of whitespace off the ends --- cogs/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/core.py b/cogs/core.py index a6b840a..4214502 100644 --- a/cogs/core.py +++ b/cogs/core.py @@ -143,7 +143,7 @@ class Core: async def add_tag(self, ctx, *result: str): """Use this to add a new tag that can be used in this server Format to add a tag is !tag add - """ - result = ' '.join(result) + result = ' '.join(result).strip() tag = result[0:result.find('-')] result = result[result.find('-') + 2:] cursor = config.getCursor()