Changed scanext(). Needs testing.

This commit is contained in:
Uwe Pfeifer 2022-11-07 22:31:47 +01:00
parent b8c56195c0
commit df1040dfec

View file

@ -77,15 +77,11 @@ async def sync(ctx: commands.Context, guilds: commands.Greedy[discord.Object],
# loading extensions ...
# TODO: Test this.
async def scanext():
with os.scandir('./ext/') as dirs:
for entry in dirs:
if entry.name.endswith('.py'):
try:
print(f"Loading extension: {entry.name}")
await bot.load_extension('ext.' + os.path.splitext(entry.name)[0])
except Exception as error:
print(f'Error loading {entry.name}: {error}')
for filename in os.listdir("./ext"):
if filename.endswith(".py"):
await bot.load_extension(f"ext.{filename[:-3]}")
async def main():