Browse Source

Except TypeError for analyze_timings

pull/2/head
DrBot7 3 years ago
committed by GitHub
parent
commit
262b21606e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      bot.py

6
bot.py

@ -36,6 +36,7 @@ logging.basicConfig(filename='console.log',
)
logging.getLogger().addHandler(logging.StreamHandler(sys.stdout))
@bot.event
async def on_ready():
# Marks bot as running
@ -207,7 +208,11 @@ async def on_message(message):
await message.channel.send(embed=embed_var)
timings = bot.get_cog('Timings')
try:
await timings.analyze_timings(message)
except TypeError:
await message.channel.send("Uhh I seem to be broken. Please wait one moment as I get a dev to fix me..."
"\n<@322764955516665856> YOU GOT A BUG COME FIX IT.")
await bot.process_commands(message)
@ -478,6 +483,7 @@ async def before_updater():
logging.info('waiting to enter loop')
await bot.wait_until_ready()
for file_name in os.listdir('./cogs'):
if file_name.endswith('.py'):
bot.load_extension(f'cogs.{file_name[:-3]}')

Loading…
Cancel
Save