Skip to content

Commit

Permalink
fix: correct sqlite path for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
a1ex4 committed Sep 4, 2024
1 parent 253eb23 commit 262d225
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ data
/lib64
/pyvenv.cfg
/share
/Scripts

# pyenv
.python-version
2 changes: 1 addition & 1 deletion app/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'languages.json',
]

OWNFOIL_DB = 'sqlite:////' + os.path.join(CONFIG_DIR, 'ownfoil.db')
OWNFOIL_DB = 'sqlite:///' + os.path.join(CONFIG_DIR, 'ownfoil.db')

DEFAULT_SETTINGS = {
"library": {
Expand Down

0 comments on commit 262d225

Please sign in to comment.