From fb29fb91a9592fc80e23668b84a97fd010c3cac1 Mon Sep 17 00:00:00 2001 From: AIIrondev Date: Wed, 12 Aug 2026 16:34:01 +0200 Subject: [PATCH] Fix for the delete user function --- Web/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Web/app.py b/Web/app.py index 062b8a4..6153564 100755 --- a/Web/app.py +++ b/Web/app.py @@ -8199,7 +8199,7 @@ def delete_user(): try: client = MongoClient(cfg.MONGODB_HOST, cfg.MONGODB_PORT) tenant_id = session.get('tenant_id') - db = _get_tenant_db(client, tenant_id) + db = us._get_tenant_db(client, tenant_id) ausleihungen = db['ausleihungen'] items_col = db['items']