##// END OF EJS Templates
cambio a timeZone
joabAM -
r1402:2b5adcd8c887
parent child
Show More
@@ -389,7 +389,7 class HDFWriter(Operation):
389 389 metadataList = None
390 390 currentDay = None
391 391 lastTime = None
392 typeTime = "ut"
392 timeZone = "ut"
393 393 hourLimit = 3
394 394 breakDays = True
395 395
@@ -399,14 +399,14 class HDFWriter(Operation):
399 399 return
400 400
401 401 def setup(self, path=None, blocksPerFile=10, metadataList=None, dataList=None, setType=None,
402 description=None,typeTime = "ut",hourLimit = 3, breakDays=True):
402 description=None,timeZone = "ut",hourLimit = 3, breakDays=True):
403 403 self.path = path
404 404 self.blocksPerFile = blocksPerFile
405 405 self.metadataList = metadataList
406 406 self.dataList = [s.strip() for s in dataList]
407 407 self.setType = setType
408 408 self.description = description
409 self.timeZone = typeTime
409 self.timeZone = timeZone
410 410 self.hourLimit = hourLimit
411 411 self.breakDays = breakDays
412 412
General Comments 0
You need to be logged in to leave comments. Login now