Skip to content

Commit

Permalink
SyntaxError fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gersona committed Nov 28, 2024
1 parent 6de8b3f commit d1c2acb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weblate/api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1111,7 +1111,7 @@ def machinery_settings(self, request: Request, **kwargs):
project.save(update_fields=["machinery_settings"])
return Response(
{
"message": f"Services installed: {", ".join(valid_configurations.keys())}"
"message": f"Services installed: {', '.join(valid_configurations.keys())}"
},
status=HTTP_201_CREATED,
)
Expand Down

0 comments on commit d1c2acb

Please sign in to comment.