diff options
author | Evangelos Foutras <foutrelis@gmail.com> | 2010-01-24 01:52:16 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-01-30 15:55:19 -0600 |
commit | 61e8a6b4c337900c5d32425f1ed81c3c5d19621b (patch) | |
tree | 18e3a5782686c6794dbaf760ba673303e0f2901e /todolists | |
parent | f8fae0942c93c02587d6449c07eccae782624346 (diff) |
Exclude repos ending with "Testing" from ToDos
This should fix the issue with Community-Testing packages appearing in
ToDo lists.
After this change has been applied, simply edit and save a ToDo list to
make its Community-Testing packages go away.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'todolists')
-rw-r--r-- | todolists/views.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/todolists/views.py b/todolists/views.py index 10d36e15..c06397e7 100644 --- a/todolists/views.py +++ b/todolists/views.py @@ -23,7 +23,8 @@ class TodoListForm(forms.Form): self.cleaned_data['packages'].split("\n")] package_names = set(package_names) packages = Package.objects.filter( - pkgname__in=package_names).exclude(repo__name="Testing").order_by('arch') + pkgname__in=package_names).exclude( + repo__name__endswith="Testing").order_by('arch') return packages |