From 66f23a04f908d0d4388c7205dc36ba6a85ed4779 Mon Sep 17 00:00:00 2001 From: lza_menace Date: Fri, 23 Oct 2020 00:34:38 -0700 Subject: [PATCH] fix import ref --- supportbot/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supportbot/db.py b/supportbot/db.py index 0c4ab54..1cb6e5b 100644 --- a/supportbot/db.py +++ b/supportbot/db.py @@ -1,6 +1,6 @@ import datetime from peewee import * -import config +from supportbot import config db = SqliteDatabase(config.SQLITE_DB_PATH)