From 1db320a97ff086f08875baab499229caee13470e Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Sat, 6 Mar 2021 12:04:38 -0600 Subject: [PATCH] snapshot... --- modules/icing/pirep_goes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index a64af65c..772f9ac5 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -99,7 +99,8 @@ def run(): try: h5f = h5py.File(clvr_file, 'r') except Exception: - h5f.close() + if h5f is not None: + h5f.close() print('Problem with file: ', clvr_file) continue if last_h5f is not None: -- GitLab