From 59c0611f1264fec2fb228a1e29a64858d0046108 Mon Sep 17 00:00:00 2001 From: nickb <nickb@ssec.wisc.edu> Date: Thu, 11 Feb 2021 16:37:41 +0000 Subject: [PATCH] use input file basenames rather than full path. --- gridded_glm/libexec/_minute_gridder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gridded_glm/libexec/_minute_gridder.py b/gridded_glm/libexec/_minute_gridder.py index d07e00c..3e63eee 100644 --- a/gridded_glm/libexec/_minute_gridder.py +++ b/gridded_glm/libexec/_minute_gridder.py @@ -201,7 +201,7 @@ def add_gglm_attrs(netcdf_filename, input_filenames): nc = Dataset(netcdf_filename, 'a') setattr(nc, 'cspp_geo_gglm_version', get_cspp_gglm_version()) setattr(nc, 'cspp_geo_gglm_production_host', socket.gethostname()) - setattr(nc, 'cspp_geo_gglm_input_files', ",".join(input_filenames)) # this probably needs to be added somewhere else? + setattr(nc, 'cspp_geo_gglm_input_files', ",".join([os.path.basename(f) for f in input_filenames])) nc.close() except: log.error("could not add CSPP Geo GGLM attributes to {}".format(netcdf_filename)) -- GitLab