Skip to content

Commit 83e05fe

Browse files
committed
fix
1 parent 5a01327 commit 83e05fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cads_processing_api_service/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def general_exception_handler(
213213
last_context_line = find_last_context_line(list(exc_traceback))
214214
logger.error(
215215
"internal server error",
216-
exception="".join([exc_traceback[-last_context_line:]]),
216+
exception="".join(exc_traceback[-last_context_line:]),
217217
)
218218
out = fastapi.responses.JSONResponse(
219219
status_code=fastapi.status.HTTP_500_INTERNAL_SERVER_ERROR,

0 commit comments

Comments
 (0)