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

Changeset 246

Show
Ignore:
Timestamp:
11/19/09 11:46:53
Author:
cbc
Message:

Fix syntax typo.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sodar/branches/scintec-branch/sodar/scintec/__init__.py

    r245 r246  
    44""" 
    55 
    6 __all__ = ['maindata'
     6__all__ = ['maindata',
  • sodar/branches/scintec-branch/sodar/scintec/maindata.py

    r244 r246  
    3737                      if block.strip()] 
    3838        self.format_header = [line.strip() 
    39                               for line in blocks[0].split('\n') 
     39                              for line in self.blocks[0].split('\n') 
    4040                              if line.strip()] 
    4141        self.file_header = [line.strip() 
    42                             for line in blocks[1].split('\n') 
     42                            for line in self.blocks[1].split('\n') 
    4343                            if line.strip()] 
    44         self.profile_blocks = blocks[2:] 
     44        self.profile_blocks = self.blocks[2:] 
    4545                             
    4646def _testSetUp(mnd_dir,mnd_file):