Fix planetplanet so it won't choke on http://guysoft.wordpress.com/tag/olpc/feed,
which has <content> tags with no type='text/html' attributes.

--- /var/lib/python-support/python2.5/planet/__init__.py.orig	2008-10-14 10:08:54.000000000 -0400
+++ /var/lib/python-support/python2.5/planet/__init__.py	2008-10-14 10:03:04.000000000 -0400
@@ -879,9 +879,10 @@ class NewsItem(cache.CachedInfo):
                 # Content field: concatenate the values
                 value = ""
                 for item in entry[key]:
-                    if item.type == 'text/html':
+                    type = item.get('type', 'text/html')
+                    if type == 'text/html':
                         item.value = sanitize.HTML(item.value)
-                    elif item.type == 'text/plain':
+                    elif type == 'text/plain':
                         item.value = escape(item.value)
                     if item.has_key('language') and item.language and \
                        (not self._channel.has_key('language') or
