6c07f46c52d4

Stupid mistake.
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Thu, 15 Jan 2009 20:27:20 -0500
parents 45e64ae24993
children a6653f5f6733
branches/tags (none)
files rss/feeds.py

Changes

--- 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