From cc7e95caff49be701732544692aa65e8756f18ed Mon Sep 17 00:00:00 2001 From: Abigail Gold Date: Sun, 8 Dec 2019 03:24:14 -0500 Subject: [PATCH 1/2] oopsie whoopsie --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 56717b0..2440950 100644 --- a/main.py +++ b/main.py @@ -150,7 +150,7 @@ async def _before_ensure_activity(): # --- Run --- for ext in opt.exts: - bot.load_extension(f"exts.{ext}") + bot.load_extension(extdir + '.' + ext) _ensure_activity.start() From 51a396e04997354505cae27536ac458d4e04c526 Mon Sep 17 00:00:00 2001 From: Abigail Gold Date: Sun, 8 Dec 2019 03:26:04 -0500 Subject: [PATCH 2/2] a little fucky-wucky --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 2440950..8edf832 100644 --- a/main.py +++ b/main.py @@ -150,7 +150,7 @@ async def _before_ensure_activity(): # --- Run --- for ext in opt.exts: - bot.load_extension(extdir + '.' + ext) + bot.load_extension(ext_dir + '.' + ext) _ensure_activity.start()