This is an automated email from the ASF dual-hosted git repository.
gstein pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/steve.git
The following commit(s) were added to refs/heads/trunk by this push:
new 0f201ae revert change of path for steve.db ... it is located with the
server
0f201ae is described below
commit 0f201aee3b52e36b8d82b87cffcc6073e0066a6d
Author: Greg Stein <[email protected]>
AuthorDate: Thu Feb 12 07:42:17 2026 -0600
revert change of path for steve.db ... it is located with the server
---
v3/server/pages.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/v3/server/pages.py b/v3/server/pages.py
index dc69570..46942f9 100644
--- a/v3/server/pages.py
+++ b/v3/server/pages.py
@@ -40,7 +40,7 @@ APP = asfquart.APP
_LOGGER = logging.getLogger(__name__)
THIS_DIR = pathlib.Path(__file__).resolve().parent
-DB_FNAME = THIS_DIR.parent / APP.cfg.db
+DB_FNAME = THIS_DIR / APP.cfg.db
TEMPLATES = THIS_DIR / 'templates'
STATICDIR = THIS_DIR / 'static'