Skip to content
This repository has been archived by the owner on Jan 11, 2025. It is now read-only.

Commit

Permalink
fix: database path
Browse files Browse the repository at this point in the history
  • Loading branch information
hoosnick committed Apr 21, 2024
1 parent 5bf6b40 commit 81d87ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/config_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"])

0 comments on commit 81d87ff

Please sign in to comment.