| author | Philippe Pepiot <phil@philpep.org> | 2010-11-18 14:32:31 (UTC) |
|---|---|---|
| committer | Philippe Pepiot <phil@philpep.org> | 2010-11-18 14:32:31 (UTC) |
| commit | 16609ae904056e7cd8a8a955b067d5e819aeec07 (patch) (side-by-side diff) | |
| tree | fa88fee4c30435839efb2275689d48cf06916f80 | |
| parent | 3fe5552c5b80fc7889c79b665664cc544c099849 (diff) | |
| download | pblog-master.tar.gz pblog-master.tar.bz2 | |
| -rw-r--r-- | pblog/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pblog/views.py b/pblog/views.py index da45aa4..e0af8fa 100644 --- a/pblog/views.py +++ b/pblog/views.py @@ -179,7 +179,7 @@ class FeedTag(ViewHandler): @feed_content def get(self, tag_name): posts = Post.query.\ - filter(Pblog.blog==self.blog).\ + filter(Post.blog==self.blog).\ filter(Post.tags.any(Tag.name==unicode(tag_name))).\ limit(self.conf.max_feed) return {"posts": posts} |
