diff --git a/cogs/tags.py b/cogs/tags.py index 76b36bd..bd20b00 100644 --- a/cogs/tags.py +++ b/cogs/tags.py @@ -36,7 +36,7 @@ class Tags: Format to add a tag is !tag add - """ try: tag = re.search("(.*) - (.*)",result).group(1).strip() - tag_result = "(.*) - (.*)",result).group(2).strip() + tag_result = re.search("(.*) - (.*)",result).group(2).strip() except AttributeError: await self.bot.say("Please provide the format for the tag in: !tag add - ") return