Same for multiple event processing.

This commit is contained in:
Ludger Küperkoch 2015-10-27 16:53:11 +01:00
parent 6676484a61
commit 43d243e0a1

View File

@ -119,11 +119,12 @@ def autoPyLoT(inputfile):
filedata = None
nllfile = open(locfile, 'r')
filedata = nllfile.read()
# replace old command
filedata = filedata.replace('LOCFILES', locfiles)
nllfile = open(locfile, 'w')
nllfile.write(filedata)
nllfile.close()
if filedata.find(locfiles) < 0:
# replace old command
filedata = filedata.replace('LOCFILES', locfiles)
nllfile = open(locfile, 'w')
nllfile.write(filedata)
nllfile.close()
# locate the event
subprocess.call([nlloccall, locfile])