From 1204eb00b29d888e2636f2c4c4fba015e5530686 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 14 Jun 2012 12:46:32 +0000 Subject: [PATCH] minor fix --- lib/core/bigarray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/bigarray.py b/lib/core/bigarray.py index 72cb21529..f07f6adac 100644 --- a/lib/core/bigarray.py +++ b/lib/core/bigarray.py @@ -69,7 +69,7 @@ class BigArray(list): self.chunks[self.cache.index] = filename if not (self.cache and self.cache.index == index): with open(self.chunks[index], "rb") as fp: - self.cache = (index, pickle.load(fp), False) + self.cache = Cache(index, pickle.load(fp), False) def __getitem__(self, y): index = y / BIGARRAY_CHUNK_LENGTH