Changeset 33259 for trunk/ippToPsps/jython/gpc1db.py
- Timestamp:
- Feb 14, 2012, 12:02:48 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/ippToPsps/jython/gpc1db.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/jython/gpc1db.py
r33186 r33259 20 20 Constructor 21 21 ''' 22 def __init__(self, logger, doc):23 super(Gpc1Db, self).__init__(logger, doc, "gpc1database")22 def __init__(self, logger, config): 23 super(Gpc1Db, self).__init__(logger, config, "gpc1database") 24 24 25 25 ''' … … 227 227 if len(files) < 1: return None 228 228 229 return Fits(self.logger, self. doc, files[0]) # TODO just returning first file - check229 return Fits(self.logger, self.config, files[0]) # TODO just returning first file - check 230 230 231 231 … … 304 304 305 305 # if we get here, then the cmf is readable, now check the stack_id 306 fits = Fits(self.logger, self. doc, path)306 fits = Fits(self.logger, self.config, path) 307 307 if fits.getPrimaryHeaderValue("STK_ID") == str(stackID): 308 308 # we have the right file!
Note:
See TracChangeset
for help on using the changeset viewer.
