@@ -296,7 +296,7 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
296
296
print line
297
297
298
298
lineDate = datetime .datetime ( (int (d [2 ]) < 2000 )* 2000 + int (d [2 ]), #year
299
- month_abbr .index (d [1 ]), #month as number
299
+ [ m for m in month_abbr ] .index (d [1 ]), #month as number
300
300
int (d [0 ]), #day
301
301
int (t [0 ]), #hour
302
302
int (t [1 ]), #minute
@@ -481,16 +481,16 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
481
481
for n , monFile in enumerate (dam_filelist ):
482
482
fname = os .path .split (monFile )[- 1 ]
483
483
484
- log .output ( 'Found file %s/%s: %s' % (n + 1 , len (dam_filelist ), fname ) )
484
+ # log.output ( 'Found file %s/%s: %s' % (n+1, len(dam_filelist), fname) )
485
485
486
486
try :
487
487
mon = int (fname [fname .index (FILE_PREFIX )+ len (FILE_PREFIX ):- 4 ])
488
488
except :
489
489
log .error ( 'Could not determine monitor number. Check that your files are properly named (e.g.: Monitor001.txt)' )
490
490
491
491
if monitors .count (mon ):
492
- processFile ( monFile , os .path .join (outputPath , fname ), startTime , correctErrors = opts .GetOption ('correctErrors' ), cleanInput = opts .GetOption ('cleanInput' ) )
493
492
log .output ( 'Processing file: %s' % (fname ) )
493
+ processFile ( monFile , os .path .join (outputPath , fname ), startTime , correctErrors = opts .GetOption ('correctErrors' ), cleanInput = opts .GetOption ('cleanInput' ) )
494
494
else :
495
495
log .output ( 'Skipping file: %s' % (fname ) )
496
496
0 commit comments