Skip to content

Commit ac34e17

Browse files
committed
Fix syntax error in error response message for compile-and-fix endpoint
1 parent d16071f commit ac34e17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ async def compile_and_fix_rust(request: dict):
263263
# If we've exhausted all attempts, return error
264264
return JSONResponse(content={
265265
"status": "error",
266-
"message": f"Failed to fix code: {attempts[-1]['output']},
266+
"message": f"Failed to fix code: {attempts[-1]['output']}",
267267
"attempts": attempts,
268268
"combined_text": output_text.strip(),
269269
"final_files": current_files

0 commit comments

Comments
 (0)