NCCOOS Trac Projects: Top | Web | Platforms | Processing | Viz | Sprints | Sandbox | (Wind)

Changeset 374

Show
Ignore:
Timestamp:
09/10/10 20:34:38
Author:
cbc
Message:

Remove check for missing Value tag in parse module and defer to handling KeyErrors?.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • spongenet/trunk/spongenet/parse.py

    r372 r374  
    229229            tag = XMLNS_PATTERN.search(elem.tag).groups()[1].lower() 
    230230            self[tag] = elem.text 
    231         if "value" not in self: 
    232             self["value"] = MISSING_VALUE 
    233231 
    234232