From e8485669edfb2e2524b60369f5350d36368ee14c Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 7 Jun 2021 09:23:21 -0500 Subject: [PATCH] fix bug --- modules/aeolus/datasource.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/aeolus/datasource.py b/modules/aeolus/datasource.py index 702c8ad3..4f51c2d4 100644 --- a/modules/aeolus/datasource.py +++ b/modules/aeolus/datasource.py @@ -142,7 +142,7 @@ class AMVFiles: def get_file_containing_time(self, timestamp): k = -1 - for i in range(len(self.ftimes.shape[0])): + for i in range(self.ftimes.shape[0]): if (timestamp >= self.ftimes[i, 0]) and (timestamp < self.ftimes[i, 1]): k = i break -- GitLab