- Timestamp:
- Jan 27, 2013, 5:58:25 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20121219/ippToPsps/jython/dvo.py
r35042 r35063 33 33 34 34 ''' 35 def __init__(self, logger, config, scratchDbName= "ipptopsps_test_scratch"):35 def __init__(self, logger, config, scratchDbName=None): 36 36 37 37 # set up logging … … 49 49 self.useStilts = 0 50 50 51 # connect to the specified scratch database 51 # connect to the specified scratch database, if a name is given, otherwise use the first version 52 52 try: 53 self.scratchDb = ScratchDb(self.logger, self.config, scratchDbName)53 self.scratchDb = ScratchDb(self.logger, self.config, '1', scratchDbName) 54 54 except: raise 55 55 … … 617 617 cmd += " " + str(decCenter+halfSize) 618 618 619 if self.config.parallel: 620 cmd += " -parallel" 621 619 622 self.logger.infoPair("Running dvopsps", cmd) 620 623 p = Popen(cmd, shell=True, stdout=PIPE)
Note:
See TracChangeset
for help on using the changeset viewer.
