Merge pull request #97 from classabbyamp/extfix

fix ext loading
This commit is contained in:
0x5c 2019-12-08 03:29:02 -05:00 committed by GitHub
commit be93561e8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ async def _before_ensure_activity():
# --- Run ---
for ext in opt.exts:
bot.load_extension(f"exts.{ext}")
bot.load_extension(ext_dir + '.' + ext)
_ensure_activity.start()