Commit 299edf06 authored by Dominik Luntzer's avatar Dominik Luntzer

Use correct class name when creating instance of lazy loading dict...

parent 2fcbbf85
......@@ -504,7 +504,7 @@ class AddressSpace(object):
def __len__(self):
raise NotImplementedError
self._nodes = LazyLoader(shelve.open(path, "r"))
self._nodes = LazyLoadingDict(shelve.open(path, "r"))
def get_attribute_value(self, nodeid, attr):
with self._lock:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment