diff options
| author | 2020-10-13 12:27:27 +0400 | |
|---|---|---|
| committer | 2020-10-13 12:27:27 +0400 | |
| commit | c835fe8447b239871957817edf325fe1eeadfa12 (patch) | |
| tree | 6188ce33160d762c77b6ad130cb69eb08c1048ff | |
| parent | Merge pull request #1227 from python-discord/ducky-rescue-mission (diff) | |
Fixed hardcoded prefix in __main__.py
| -rw-r--r-- | bot/__main__.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/__main__.py b/bot/__main__.py index da042a5ed..367be1300 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -58,7 +58,7 @@ bot = Bot(      redis_session=redis_session,      loop=loop,      command_prefix=when_mentioned_or(constants.Bot.prefix), -    activity=discord.Game(name="Commands: !help"), +    activity=discord.Game(name=f"Commands: {constants.Bot.prefix}help"),      case_insensitive=True,      max_messages=10_000,      allowed_mentions=discord.AllowedMentions(everyone=False, roles=allowed_roles), | 
