From fea852ba4ebb967cec91ecbe5383e988a499bf35 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Fri, 15 Jul 2016 08:58:28 -0500 Subject: [PATCH] Fixed syntax error --- cogs/mod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/mod.py b/cogs/mod.py index ddc7da4..71033be 100644 --- a/cogs/mod.py +++ b/cogs/mod.py @@ -65,7 +65,7 @@ class Mod: @commands.has_permissions(manage_server=True) async def perms(self, ctx, command: str): if command not in self.bot.commands: - await self.bot.say("{} does not appear to be a valid command!") + await self.bot.say("{} does not appear to be a valid command!".format(command)) return cursor = config.getCursor()