From f7af5afdfbc1fb4c8b14fdc48ea02f9834924008 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 22 Jun 2021 11:30:42 -0500 Subject: [PATCH] fix little bug --- modules/aeolus/aeolus_amv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py index e9f606c4..d717d8c2 100644 --- a/modules/aeolus/aeolus_amv.py +++ b/modules/aeolus/aeolus_amv.py @@ -1867,7 +1867,7 @@ def create_amv_to_aeolus_match_file(aeolus_files_dir, amv_files_dir, outfile=Non amv_files = None if amv_source == 'CARR': - amv_files = get_datasource(amv_files_dir, 'CARR', file_time_span==60, band=band) + amv_files = get_datasource(amv_files_dir, 'CARR', file_time_span=60, band=band) else: amv_files = get_datasource(amv_files_dir, amv_source, band=band) -- GitLab