Added prefix to PR

This commit is contained in:
Twentysix 2016-03-11 19:35:51 +01:00
parent 96a3b95d67
commit 77d3056da2

View File

@ -97,7 +97,7 @@ class CustomCommands:
if cmdlist:
msg = "```Custom commands:\n"
for cmd in sorted([cmd for cmd in cmdlist.keys()]):
msg += " {}\n".format(cmd)
msg += " {}{}\n".format(ctx.prefix, cmd)
fmsg = msg + "```"
await self.bot.whisper(fmsg)
else: