Skip to content

Commit

Permalink
fix: quotes crashing talpa csv (#3593)
Browse files Browse the repository at this point in the history
  • Loading branch information
rikuke authored Nov 26, 2024
1 parent 46c8d86 commit 6a5715a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def talpa_export_batch(self, request, *args, **kwargs) -> HttpResponse:
)

response = HttpResponse(
csv_service.get_csv_string(True).encode("utf-8"),
csv_service.get_csv_string(remove_quotes=False).encode("utf-8"),
content_type="text/csv",
)

Expand Down

0 comments on commit 6a5715a

Please sign in to comment.