From 59e485adabbb301228e9197c8f053096e735d213 Mon Sep 17 00:00:00 2001 From: rink <rink@ssec.wisc.edu> Date: Mon, 12 Oct 2020 15:02:11 -0500 Subject: [PATCH] snapshot.. --- modules/aeolus/aeolus_amv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py index b087416f..53045cf7 100644 --- a/modules/aeolus/aeolus_amv.py +++ b/modules/aeolus/aeolus_amv.py @@ -44,8 +44,8 @@ class AMVFiles: def get_file_containing_time(self, timestamp): k = -1 - for i in range(len(ftimes)): - if (timestamp >= ftimes[i][0]) and (timestamp < ftimes[i][1]): + for i in range(len(self.ftimes)): + if (timestamp >= self.ftimes[i][0]) and (timestamp < self.ftimes[i][1]): k = i break if k < 0: -- GitLab