Skip to content

Commit

Permalink
Fix wrong inner quotation in text
Browse files Browse the repository at this point in the history
Thanks to @vdbergh for bringing attention to the bug.
  • Loading branch information
ppigazzini committed Jun 29, 2024
1 parent f5fa284 commit e3cd177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/fishtest/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1408,7 +1408,7 @@ def tests_delete(request):
validate(runs_schema, run, "run")
except ValidationError as e:
message = (
f"The run object {request.POST["run-id"]} does not validate: {str(e)}"
f"The run object {request.POST['run-id']} does not validate: {str(e)}"
)
print(message, flush=True)
if "version" in run and run["version"] >= RUN_VERSION:
Expand Down

0 comments on commit e3cd177

Please sign in to comment.