mirror of
https://github.com/uhIgnacio/EmoteManager.git
synced 2024-08-15 02:23:13 +00:00
use my helpformatter
This commit is contained in:
parent
4d336d419f
commit
f17bfa379d
2 changed files with 5 additions and 3 deletions
2
bot.py
2
bot.py
|
@ -6,6 +6,7 @@ import traceback
|
||||||
|
|
||||||
import discord
|
import discord
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
|
import simple_help_formatter
|
||||||
|
|
||||||
logging.basicConfig(level=logging.WARNING)
|
logging.basicConfig(level=logging.WARNING)
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
@ -19,6 +20,7 @@ class Bot(commands.AutoShardedBot):
|
||||||
super().__init__(
|
super().__init__(
|
||||||
command_prefix=commands.when_mentioned,
|
command_prefix=commands.when_mentioned,
|
||||||
description=self.config.get('description', ''),
|
description=self.config.get('description', ''),
|
||||||
|
formatter=simple_help_formatter.HelpFormatter(),
|
||||||
**kwargs)
|
**kwargs)
|
||||||
|
|
||||||
self._setup_success_emojis()
|
self._setup_success_emojis()
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
aioec
|
aioec
|
||||||
git+https://github.com/Rapptz/discord.py@rewrite
|
|
||||||
jishaku
|
|
||||||
ben_cogs
|
ben_cogs
|
||||||
|
discord.py @ git+https://github.com/Rapptz/discord.py@rewrite
|
||||||
|
jishaku
|
||||||
|
simple_help_formatter @ git+https://github.com/bmintz/simple-dpy-helpformatter
|
||||||
wand
|
wand
|
||||||
aiofiles
|
|
||||||
|
|
Loading…
Reference in a new issue