From 81d87ffad02129f531c0b6a7d26d06ea54352f06 Mon Sep 17 00:00:00 2001 From: hoosnick Date: Sun, 21 Apr 2024 19:37:22 +0500 Subject: [PATCH] fix: database path --- app/config_reader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config_reader.py b/app/config_reader.py index 974d68b..d297986 100644 --- a/app/config_reader.py +++ b/app/config_reader.py @@ -44,6 +44,6 @@ class Config: if not os.path.exists(db_path): os.makedirs(db_path) -DB = SQLiteEngine("%s\\projects.db" % db_path) +DB = SQLiteEngine("%s/projects.db" % db_path) APP_REGISTRY = AppRegistry(apps=["app.db.piccolo_app"])