From 96b791d685a18a46b47f57d5b4da1d93363e9312 Mon Sep 17 00:00:00 2001 From: Cezary Czaplewski Date: Wed, 5 Feb 2020 15:13:27 +0100 Subject: [PATCH] dock spellcheck --- django_simple/todo/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django_simple/todo/forms.py b/django_simple/todo/forms.py index 3000f80..5746644 100644 --- a/django_simple/todo/forms.py +++ b/django_simple/todo/forms.py @@ -517,7 +517,7 @@ class TaskForm_dock(forms.Form): md_seed = forms.IntegerField(label='SEED',initial=-39912345, help_text='seed for random number generator') dock_peptide = forms.BooleanField(required=False,initial=False, - label='dock peptide',help_text='no constrains on 2nd chain') + label='dock peptide',help_text='no constraints on 2nd chain') def clean(self): cleaned_data = super(TaskForm_dock, self).clean() @@ -578,7 +578,7 @@ class TaskForm_dock_a(forms.Form): md_seed = forms.IntegerField(label='SEED',initial=-39912345, help_text='seed for random number generator') dock_peptide = forms.BooleanField(required=False,initial=False, - label='dock peptide',help_text='no constrains on 2nd chain') + label='dock peptide',help_text='no constraints on 2nd chain') unres_ff = forms.ChoiceField(choices=FF_CHOICE,widget=forms.RadioSelect, -- 1.7.9.5