diff options
author | Frederick Yin <fkfd@fkfd.me> | 2022-02-02 11:16:23 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2022-02-02 11:16:23 +0800 |
commit | 357cc3d8d9f2b02e60f0763f4701bd614b876436 (patch) | |
tree | aaf9aca396dc7ccc67790f313c445b04744e23df /jimbrella/auth.py | |
parent | c8caa0ca774c89484d64b5e7ee308e379f834cea (diff) |
Adapt web interface
Diffstat (limited to 'jimbrella/auth.py')
-rw-r--r-- | jimbrella/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jimbrella/auth.py b/jimbrella/auth.py index 2d8b1cc..c7e2fa3 100644 --- a/jimbrella/auth.py +++ b/jimbrella/auth.py @@ -5,7 +5,7 @@ from .exceptions import UsernameTakenError from .config import * bp = Blueprint("auth", __name__, url_prefix="/") -users = Users(USERS_PATH) +users = Users(DATABASE_PATH) def show_error(action, message): |