Skip to content
Snippets Groups Projects
Commit 59e485ad authored by rink's avatar rink
Browse files

snapshot..

parent d6c78ae3
No related branches found
No related tags found
No related merge requests found
...@@ -44,8 +44,8 @@ class AMVFiles: ...@@ -44,8 +44,8 @@ class AMVFiles:
def get_file_containing_time(self, timestamp): def get_file_containing_time(self, timestamp):
k = -1 k = -1
for i in range(len(ftimes)): for i in range(len(self.ftimes)):
if (timestamp >= ftimes[i][0]) and (timestamp < ftimes[i][1]): if (timestamp >= self.ftimes[i][0]) and (timestamp < self.ftimes[i][1]):
k = i k = i
break break
if k < 0: if k < 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment