Revert "feed_plugin: do not fix the feed queryset"

This reverts commit 93fe98d006.
This commit is contained in:
Benjamin Dauvergne 2013-08-28 10:51:48 +02:00
parent 93fe98d006
commit 67e968ba93
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)