Fixed borked path for tags.

This commit is contained in:
nya~ 2018-06-21 19:26:58 +01:00 committed by GitHub
parent 66d994023e
commit 0a9ab007e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ import asyncio
class Tag: class Tag:
def __init__(self, bot): def __init__(self, bot):
self.bot = 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() json_data = fp.read()
global tags global tags
tags = json.loads(json_data) tags = json.loads(json_data)