multicapture.py: minor typo/bug in testing for postprocess instruction

This commit is contained in:
Dr Paul Brewer 2014-09-29 00:02:05 +00:00
parent c50d8184f7
commit 0977f2ee4d
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ while True:
fname='./'+satName+'/'+str(aosTime)
print "beginning pass "+fname+" predicted end "+str(losTime)
recordWAV(freq,fname,losTime-aosTime)
if postProcess in sat:
if 'postProcess' in sat:
sat['postProcess'](fname) # analyze, make pictures, graphs, etc.
print "finished pass "+fname+" at "+str(time.time())
time.sleep(60.0)