Skip to content
Snippets Groups Projects
Commit 8fcae87e authored by Cain, Payton David's avatar Cain, Payton David
Browse files

Fixes issue 121

Verifies whether or not the filename created exists. If not, the function returns with no output. If the filename exists, an outpupt file is written.
parent f263eb61
No related branches found
No related tags found
No related merge requests found
......@@ -181,9 +181,7 @@ class GOESIMFV283Factory(IMFV283Factory):
buf.append('RETRANSMITTED: N\n')
buf.append('ASCENDING_TIME: false\n')
buf.append('RT_SETTLE_DELAY: true\n')
if os.path.exists(criteria_file) is not True: return
with open(criteria_file, 'wb') as fh:
fh.write(''.join(buf))
fh.close()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment