aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-05 20:51:24 +0000
committerGravatar Gareth Coles <[email protected]>2018-02-05 20:51:24 +0000
commit36e8917b89ed5ccef5d701769ea54cd076f0a5a8 (patch)
tree063aa3a1b18f6e08ef933ea33ba2030bb305817c
parentFunction doesn't need to be async (diff)
Fix prefixes
-rw-r--r--bot/__main__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/__main__.py b/bot/__main__.py
index a6f6dce3d..b0cdbe803 100644
--- a/bot/__main__.py
+++ b/bot/__main__.py
@@ -3,7 +3,7 @@ import os
from discord.ext.commands import AutoShardedBot, when_mentioned_or
-bot = AutoShardedBot(command_prefix=when_mentioned_or(">>>", ">>> "))
+bot = AutoShardedBot(command_prefix=when_mentioned_or(">>> ", ">>>"))
# Internal/debug
bot.load_extension("bot.cogs.logging")