From f151a8a050607327fc6c11f6df6eaf5285819877 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Fri, 7 Mar 2025 08:53:31 +0100 Subject: [PATCH] fix in deploy --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 5b15972..2dc62f0 100644 --- a/app.py +++ b/app.py @@ -1211,7 +1211,7 @@ def deploy_user(user_id): db.session.commit() except Exception as e: db.session.add(DeployLog( - details=f'Failed to update {h.hostname}: {str(e)} for user {user_id}' + details=f'Failed to update {h.hostname}: {str(e)} for user {user_id}', user_id=user_id ))