taskapp/forms/task.py
changeset 90 b2426897ff18
parent 89 1cc03941ed5d
child 91 1b5ad4b7c40e
--- 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()