Skip to content

Commit

Permalink
Merge pull request #728 from euphorie/scrum-2198-similar-titles-csv-s…
Browse files Browse the repository at this point in the history
…emicolon

Similar Titles: Use semicolon as delimiter
  • Loading branch information
reinhardt authored May 3, 2024
2 parents 0afa843 + b266e7c commit 0a88b6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/euphorie/content/browser/similar_titles_details.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def write_data(self, data, writer):

def __call__(self):
buffer = StringIO()
writer = csv.writer(buffer)
writer = csv.writer(buffer, delimiter=";")

self.write_data(self.solutions_by_risk(), writer)

Expand Down

0 comments on commit 0a88b6e

Please sign in to comment.