summaryrefslogtreecommitdiffstats
path: root/feeds.py
diff options
context:
space:
mode:
Diffstat (limited to 'feeds.py')
-rw-r--r--feeds.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/feeds.py b/feeds.py
index 0bb0e35..05c00ca 100644
--- a/feeds.py
+++ b/feeds.py
@@ -17,7 +17,7 @@ class PackageFeed(Feed):
if arch != '':
# feed for a single arch, also include 'any' packages everywhere
a = Arch.objects.get(name=arch)
- qs = qs.filter(Q(arch=a) | Q(arch__name__iexact='any'))
+ qs = qs.filter(Q(arch=a) | Q(arch__name='any'))
obj['arch'] = a
if repo != '':
# feed for a single arch AND repo