diff -r 1cc03941ed5d -r b2426897ff18 taskapp/forms/task.py --- a/taskapp/forms/task.py Thu Feb 25 02:11:49 2010 +0530 +++ b/taskapp/forms/task.py Thu Feb 25 03:47:23 2010 +0530 @@ -39,5 +39,5 @@ type_choices = [('S','Subtasks'),('D','Dependencies')] type = forms.ChoiceField(type_choices, widget=forms.RadioSelect) - task = forms.MultipleChoiceField(choices=task_choices) + task = forms.ChoiceField(choices=task_choices) return myForm()