mirror of
https://github.com/uhIgnacio/EmoteManager.git
synced 2024-08-15 02:23:13 +00:00
migrate to bot_bin 1.0.0
This commit is contained in:
parent
0cf23cb2a1
commit
7f205a38fd
2 changed files with 6 additions and 6 deletions
10
bot.py
10
bot.py
|
@ -5,7 +5,7 @@ import logging
|
|||
import traceback
|
||||
|
||||
import discord
|
||||
from ben_cogs.bot import BenCogsBot
|
||||
from bot_bin.bot import Bot
|
||||
from discord.ext import commands
|
||||
|
||||
logging.basicConfig(level=logging.WARNING)
|
||||
|
@ -13,13 +13,13 @@ logging.getLogger('discord').setLevel(logging.INFO)
|
|||
logger = logging.getLogger(__name__)
|
||||
logger.setLevel(logging.INFO)
|
||||
|
||||
class Bot(BenCogsBot):
|
||||
class Bot(Bot):
|
||||
startup_extensions = (
|
||||
'cogs.emote',
|
||||
'cogs.meta',
|
||||
'ben_cogs.debug',
|
||||
'ben_cogs.misc',
|
||||
'ben_cogs.stats',
|
||||
'bot_bin.debug',
|
||||
'bot_bin.misc',
|
||||
'bot_bin.stats',
|
||||
'jishaku',
|
||||
)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
aioec
|
||||
ben_cogs
|
||||
bot_bin>=1.0.0,<2.0.0
|
||||
discord.py>=1.0.1,<2.0.0
|
||||
jishaku
|
||||
wand
|
||||
|
|
Loading…
Reference in a new issue