--- a/rss/feeds.py Thu Jan 15 20:24:42 2009 -0500
+++ b/rss/feeds.py Thu Jan 15 20:27:20 2009 -0500
@@ -105,7 +105,7 @@
def item_link(self, item):
title = 'Steve Losh / '
if item['type'] == 'thought-text':
- title += 'Thoughts / ' + item['item'].id
+ title += 'Thoughts / ' + str(item['item'].id)
elif item['type'] == 'thought-link':
title += 'Thoughts / ' + item['item'].url
@@ -153,7 +153,7 @@
elif item['type'] == 'project':
title += item['item'].name
elif item['type'] == 'thought-text':
- title += 'Thoughts / ' + item['item'].id
+ title += 'Thoughts / ' + str(item['item'].id)
elif item['type'] == 'thought-link':
title += 'Thoughts / ' + item['item'].url