diff Feed.py @ 17:5fda8bd94fa8

make the model used to display feeds generic (so it can be used to display FeedEntries, too)
author Dirk Olmes <dirk@xanthippe.ping.de>
date Wed, 28 Apr 2010 03:37:01 +0200
parents 3ffecc709da9
children 5bb57caa8f66
line wrap: on
line diff
--- a/Feed.py	Wed Apr 28 03:00:11 2010 +0200
+++ b/Feed.py	Wed Apr 28 03:37:01 2010 +0200
@@ -10,3 +10,6 @@
 
     def __repr__(self):
         return "<Feed (%d) %s>" % (self.pk, self.title)
+
+    def userPresentableString(self):
+        return self.title