From 0a9ab007e5394885b059f4269fb626656474a911 Mon Sep 17 00:00:00 2001 From: nya~ <40436815+neko404notfound@users.noreply.github.com> Date: Thu, 21 Jun 2018 19:26:58 +0100 Subject: [PATCH] Fixed borked path for tags. --- sebimachine/cogs/tag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sebimachine/cogs/tag.py b/sebimachine/cogs/tag.py index f94ae06..08ee6fd 100644 --- a/sebimachine/cogs/tag.py +++ b/sebimachine/cogs/tag.py @@ -8,7 +8,7 @@ import asyncio class Tag: def __init__(self, bot): self.bot = bot - with open("src/shared_libs/tags.json", "r") as fp: + with open("sebimachine/shared_libs/tags.json", "r") as fp: json_data = fp.read() global tags tags = json.loads(json_data)