summaryrefslogtreecommitdiffstats
path: root/askbot/feed.py
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-01-22 15:03:25 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-01-22 15:03:25 -0300
commit3c736256ce95720f778898588b881f83588716b0 (patch)
treeea2e3a06d41de86bd628eeb864eb87e1b8ae4542 /askbot/feed.py
parent3be8f7ab895b240a50d65648ce4d44998d8818a3 (diff)
downloadaskbot-3c736256ce95720f778898588b881f83588716b0.tar.gz
askbot-3c736256ce95720f778898588b881f83588716b0.tar.bz2
askbot-3c736256ce95720f778898588b881f83588716b0.zip
fixed another rss related bug
Diffstat (limited to 'askbot/feed.py')
-rw-r--r--askbot/feed.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/feed.py b/askbot/feed.py
index 11c03bf2..c1933afe 100644
--- a/askbot/feed.py
+++ b/askbot/feed.py
@@ -143,7 +143,7 @@ class RssLastestQuestionsFeed(Feed):
#if there are tags in GET, filter the
#questions additionally
for tag in tags:
- qs = qs.filter(tags__name = tag)
+ qs = qs.filter(thread__tags__name = tag)
return qs.order_by('-thread__last_activity_at')[:30]