From 3069760a42dc60eae85adda3b71810857565f3db Mon Sep 17 00:00:00 2001 From: pcain-usgs <pcain@usgs.gov> Date: Mon, 8 Jul 2019 13:44:53 -0600 Subject: [PATCH] Fixes issue 121 Verifies if the directory exists, if not a new directory is created to store the written file --- geomagio/imfv283/GOESIMFV283Factory.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/geomagio/imfv283/GOESIMFV283Factory.py b/geomagio/imfv283/GOESIMFV283Factory.py index 4a82c8135..7ec167f24 100644 --- a/geomagio/imfv283/GOESIMFV283Factory.py +++ b/geomagio/imfv283/GOESIMFV283Factory.py @@ -181,11 +181,9 @@ class GOESIMFV283Factory(IMFV283Factory): buf.append('RETRANSMITTED: N\n') buf.append('ASCENDING_TIME: false\n') buf.append('RT_SETTLE_DELAY: true\n') - criteria_dir = os.path.dirname(criteria_file) if not os.path.exists(criteria_dir): os.makedirs(criteria_dir) - with open(criteria_file, 'wb') as fh: fh.write(''.join(buf)) fh.close() -- GitLab