feed_plugin: do not fix the feed queryset

This commit is contained in:
Benjamin Dauvergne 2013-08-28 10:45:52 +02:00
parent 0921eb66bb
commit 93fe98d006
1 changed files with 1 additions and 1 deletions

View File

@ -5,5 +5,5 @@ from . import models
from . import widgets
class FeedForm(forms.Form):
feeds = forms.ModelMultipleChoiceField(queryset=models.Feed.objects.all(),
feeds = forms.ModelMultipleChoiceField(queryset=models.Feed.objects.all,
label=_('Your feeds'), widget=widgets.CheckboxMultipleSelect)