Commit 7ed1a8f9 authored by Jim Fulton's avatar Jim Fulton

Added missing self argument

Obviously the tests don't call this. This is probably because they use
DB.storage (rather than DB._mvcc_storage).
parent 62c3e35f
......@@ -34,7 +34,7 @@ class Base(object):
raise AttributeError(name)
def __len__():
def __len__(self):
return len(self._storage)
class MVCCAdapter(Base):
......
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