Changeset 727 for CMIP6dreqbuild
- Timestamp:
- 17/08/16 16:30:49 (5 years ago)
- Location:
- CMIP6dreqbuild/trunk/src/framework/dreqPy
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
CMIP6dreqbuild/trunk/src/framework/dreqPy/dreq.py
r723 r727 529 529 bits = l.strip().split() 530 530 assert len( bits ) > 1, 'Failed to parse line in manifest %s: \n%s' % (manifest,l) 531 bb = [] 531 532 for b in bits[:2]: 532 533 if not os.path.isfile( b ): 533 534 b = '%s/%s' % (PACKAGE_DIR,b) 534 535 assert os.path.isfile( b ), 'File %s not found (listed in %s)' % (b,manifest ) 535 docl.append( tuple( bits[:2] ) ) 536 bb.append( b ) 537 docl.append( tuple( bb ) ) 536 538 for d,c in docl: 537 539 self.__read__(d, c)
Note: See TracChangeset
for help on using the changeset viewer.