We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6f6938 commit 08e086aCopy full SHA for 08e086a
services/web/server/src/simcore_service_webserver/users/_handlers.py
@@ -54,7 +54,7 @@ async def wrapper(request: web.Request) -> web.StreamResponse:
54
raise web.HTTPNotFound(reason=f"{exc}") from exc
55
except MissingGroupExtraPropertiesForProductError as exc:
56
error_code = create_error_code(exc)
57
- frontend_msg = FMSG_MISSING_CONFIG_WITH_OEC.format(error_code)
+ frontend_msg = FMSG_MISSING_CONFIG_WITH_OEC.format(error_code=error_code)
58
log_msg = create_troubleshotting_log_message(
59
message_to_user=frontend_msg,
60
error=exc,
0 commit comments