diff options
author | eliott <eliott@cactuswax.net> | 2007-11-06 20:36:53 -0500 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-11-06 20:36:53 -0500 |
commit | b358ee966bffc0ad7ef749551dea6bdbc39695be (patch) | |
tree | 491c913848a2c188a82a9c33065e4c7013b63449 /feeds.py | |
parent | 39a548fd2629f3b6383990264b2e331b3aea99fb (diff) |
Fix bug FS#8417
Diffstat (limited to 'feeds.py')
-rw-r--r-- | feeds.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -27,3 +27,7 @@ class NewsFeed(Feed): def item_pubdate(self, item): return item.postdate + + def item_author_name(self, item): + return item.author.get_full_name + |