aboutsummaryrefslogtreecommitdiffstats
path: root/bot/cogs/hacktober/halloween_facts.py
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2018-11-20 02:21:47 +0100
committerGravatar GitHub <[email protected]>2018-11-20 02:21:47 +0100
commit29aa5d3473587e79469e902199431238ef0f9f21 (patch)
tree42171ebbc66ce5d7f1b57a21327e8e5cf6ea2429 /bot/cogs/hacktober/halloween_facts.py
parentMerge pull request #33 from mathsman5133/candy-collection (diff)
parentIt should work now. (diff)
Merge pull request #67 from python-discord/dfitzpatrick-vote-monster-refactor
Dfitzpatrick vote monster refactor
Diffstat (limited to 'bot/cogs/hacktober/halloween_facts.py')
-rw-r--r--bot/cogs/hacktober/halloween_facts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/hacktober/halloween_facts.py b/bot/cogs/hacktober/halloween_facts.py
index e97c80d2..304d5d94 100644
--- a/bot/cogs/hacktober/halloween_facts.py
+++ b/bot/cogs/hacktober/halloween_facts.py
@@ -26,7 +26,7 @@ class HalloweenFacts:
def __init__(self, bot):
self.bot = bot
- with open(Path("./bot/resources", "halloween_facts.json"), "r") as file:
+ with open(Path("bot", "resources", "halloween", "halloween_facts.json"), "r") as file:
self.halloween_facts = json.load(file)
self.channel = None
self.last_fact = None