compensating for either news or blogs atom feed, but for real this time
diff --git a/plugins/asfdata.py b/plugins/asfdata.py
index f05f811..2a465f1 100644
--- a/plugins/asfdata.py
+++ b/plugins/asfdata.py
@@ -483,7 +483,7 @@
     """http://www.python.org/doc/2.5.2/lib/minidom-example.txt"""
     rc = ''
     for node in nodelist:
-        if node.nodeType == node.CDATA_SECTION_NODE or node.TEXT_NODE:
+        if node.nodeType in [node.CDATA_SECTION_NODE, node.TEXT_NODE]
             rc = rc + node.data
     return rc