fixing typo
diff --git a/plugins/asfdata.py b/plugins/asfdata.py
index 2a465f1..6e7bd7e 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 in [node.CDATA_SECTION_NODE, node.TEXT_NODE]
+        if node.nodeType in [node.CDATA_SECTION_NODE, node.TEXT_NODE]:
             rc = rc + node.data
     return rc