Skip to content

Commit

Permalink
fixed bug in heredicare uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinDo committed Aug 19, 2024
1 parent 1ab92af commit 7dc21c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def get_extended_comment(self):
if selected_criteria is not None:
for criterium in selected_criteria:
if criterium.state == "selected":
selected_criterium_strings.append(criterium.name + " (" + criterium.strength + ")" + ": " + criterium.evidence)
selected_criterium_strings.append(criterium.name + " (" + criterium.strength + ")" + ": " + criterium.evidence.replace('\n', ' '))
if criterium.state == "unselected":
unselected_criterium_strings.append(criterium.name + " (" + criterium.strength + ")" + ": " + criterium.evidence)

Expand Down

0 comments on commit 7dc21c0

Please sign in to comment.