Tested and enhanced scanext(). Should be working.

This commit is contained in:
Uwe Pfeifer 2022-11-07 22:51:54 +01:00
parent df1040dfec
commit 9824af4761

View file

@ -79,9 +79,12 @@ async def sync(ctx: commands.Context, guilds: commands.Greedy[discord.Object],
# loading extensions ...
# TODO: Test this.
async def scanext():
print("Loading extensions:")
for filename in os.listdir("./ext"):
if filename.endswith(".py"):
await bot.load_extension(f"ext.{filename[:-3]}")
print(f'Loaded: {filename}')
print('\n')
async def main():