summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2007-11-06 20:36:53 -0500
committereliott <eliott@cactuswax.net>2007-11-06 20:36:53 -0500
commitb358ee966bffc0ad7ef749551dea6bdbc39695be (patch)
tree491c913848a2c188a82a9c33065e4c7013b63449
parent39a548fd2629f3b6383990264b2e331b3aea99fb (diff)
downloadarchweb-b358ee966bffc0ad7ef749551dea6bdbc39695be.tar.gz
archweb-b358ee966bffc0ad7ef749551dea6bdbc39695be.zip
Fix bug FS#8417
-rw-r--r--feeds.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/feeds.py b/feeds.py
index bddf9419..8e16907a 100644
--- a/feeds.py
+++ b/feeds.py
@@ -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
+