diff options
author | 2018-11-20 02:09:20 +0100 | |
---|---|---|
committer | 2018-11-20 02:09:20 +0100 | |
commit | 2262f684e03d004ad65bf023eca7e649489b891f (patch) | |
tree | 235acdd38426c90dc90b2387ede580883292ee49 /bot/cogs/hacktober/monstersurvey.py | |
parent | Merge branch 'vote-monster-refactor' of https://github.com/dfitzpatrick/hackt... (diff) |
Minor changes
Diffstat (limited to 'bot/cogs/hacktober/monstersurvey.py')
-rw-r--r-- | bot/cogs/hacktober/monstersurvey.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/hacktober/monstersurvey.py b/bot/cogs/hacktober/monstersurvey.py index 376ac1fa..9eafcadc 100644 --- a/bot/cogs/hacktober/monstersurvey.py +++ b/bot/cogs/hacktober/monstersurvey.py @@ -25,7 +25,7 @@ class MonsterSurvey: def __init__(self, bot: Bot): """Initializes values for the bot to use within the voting commands.""" self.bot = bot - self.registry_location = os.path.join(os.getcwd(), 'bot', 'resources', 'halloween', 'monstersurvey.json') + self.registry_location = os.path.join(os.getcwd(), 'bot', 'resources', 'monstersurvey', 'monstersurvey.json') with open(self.registry_location, 'r') as jason: self.voter_registry = json.load(jason) |