summaryrefslogtreecommitdiff
path: root/app/posts/views/src_views.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/posts/views/src_views.py')
-rw-r--r--app/posts/views/src_views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/posts/views/src_views.py b/app/posts/views/src_views.py
index c56b723..59c371c 100644
--- a/app/posts/views/src_views.py
+++ b/app/posts/views/src_views.py
@@ -65,7 +65,7 @@ class SrcRSSFeedView(Feed):
description_template = 'feeds/blog_description.html'
def items(self):
- return SrcPost.objects.filter(status__exact=1).order_by('-pub_date')[:10]
+ return Post.objects.filter(status__exact=1).filter(post_type=PostType.SRC).order_by('-pub_date')[:10]
"""