From 5252db7d51964ffca137801c2b7b9cf58d6e3f08 Mon Sep 17 00:00:00 2001 From: Michael Woods Date: Sat, 20 Dec 2025 21:37:43 -0500 Subject: [PATCH] bugfix --- packetserver/runners/http_user_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packetserver/runners/http_user_manager.py b/packetserver/runners/http_user_manager.py index 3311479..bf248c7 100644 --- a/packetserver/runners/http_user_manager.py +++ b/packetserver/runners/http_user_manager.py @@ -26,7 +26,7 @@ from packetserver.http.auth import HttpUser, ph # ph = PasswordHasher HTTP_USERS_KEY = "httpUsers" -def open_database(db_arg: str) -> ZODB.DB.DB: +def open_database(db_arg: str) -> ZODB.DB: """ Open a ZODB database from either a local FileStorage path or ZEO address. """