Unborked a thing.
This commit is contained in:
parent
63d852f37b
commit
08f1903871
@ -75,13 +75,11 @@ class SebiMachine(commands.Bot, LoadConfig, Loggable):
|
|||||||
# Load plugins
|
# Load plugins
|
||||||
# Add your cog file name in this list
|
# Add your cog file name in this list
|
||||||
with open(in_here("extensions.txt")) as cog_file:
|
with open(in_here("extensions.txt")) as cog_file:
|
||||||
cogs = cog_file.readlines()
|
cogs = {f'sebimachine.cogs.{c.strip()}' for c in cog_file.readlines()}
|
||||||
|
|
||||||
for cog in cogs:
|
for cog in cogs:
|
||||||
# Could this just be replaced with `strip()`?
|
|
||||||
try:
|
try:
|
||||||
cog = cog.replace("\n", "")
|
self.load_extension(cog)
|
||||||
self.load_extension(f"src.cogs.{cog}")
|
|
||||||
self.logger.info(f"Loaded: {cog}")
|
self.logger.info(f"Loaded: {cog}")
|
||||||
except (ModuleNotFoundError, ImportError) as ex:
|
except (ModuleNotFoundError, ImportError) as ex:
|
||||||
logging.exception(f'Could not load {cog}', exc_info=(type(ex), ex, ex.__traceback__))
|
logging.exception(f'Could not load {cog}', exc_info=(type(ex), ex, ex.__traceback__))
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user