Skip to content
This repository has been archived by the owner on Aug 19, 2019. It is now read-only.

Commit

Permalink
Add space
Browse files Browse the repository at this point in the history
  • Loading branch information
Emanuil Ivanov authored and Emanuil Ivanov committed Aug 9, 2019
1 parent 712153b commit 5c96a23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panelapp/panels/forms/genereview.py
Expand Up @@ -71,7 +71,7 @@ def __init__(self, *args, **kwargs):
self.fields["comments"] = original_fields.get("comments")

def clean_phenotypes(self):
clean_data = [p.replace('\t', '') for p in self.cleaned_data.get('phenotypes')]
clean_data = [p.replace('\t', ' ') for p in self.cleaned_data.get('phenotypes')]
return clean_data

def save(self, *args, **kwargs):
Expand Down

0 comments on commit 5c96a23

Please sign in to comment.