Skip to content

Commit 572bd7a

Browse files
committed
More verbosity
1 parent 7bc93f4 commit 572bd7a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

accessories/data_fetcher/copyfiles.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
296296
print line
297297

298298
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
300300
int(d[0]), #day
301301
int(t[0]), #hour
302302
int(t[1]), #minute
@@ -481,16 +481,16 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
481481
for n, monFile in enumerate(dam_filelist):
482482
fname = os.path.split(monFile)[-1]
483483

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) )
485485

486486
try:
487487
mon = int(fname[fname.index(FILE_PREFIX)+len(FILE_PREFIX):-4])
488488
except:
489489
log.error( 'Could not determine monitor number. Check that your files are properly named (e.g.: Monitor001.txt)' )
490490

491491
if monitors.count(mon):
492-
processFile( monFile, os.path.join(outputPath, fname), startTime, correctErrors=opts.GetOption('correctErrors'), cleanInput=opts.GetOption('cleanInput') )
493492
log.output ( 'Processing file: %s' % (fname) )
493+
processFile( monFile, os.path.join(outputPath, fname), startTime, correctErrors=opts.GetOption('correctErrors'), cleanInput=opts.GetOption('cleanInput') )
494494
else:
495495
log.output ( 'Skipping file: %s' % (fname) )
496496

0 commit comments

Comments
 (0)