Fixed a recursive error with the ndbhandler.all.
This commit is contained in:
parent
7f8d421039
commit
fb8db4ead0
1 changed files with 1 additions and 1 deletions
|
|
@ -124,7 +124,7 @@ class DbHolder(object):
|
||||||
attr = _GA(self, _GA(self, 'name')).get("all")
|
attr = _GA(self, _GA(self, 'name')).get("all")
|
||||||
if attr:
|
if attr:
|
||||||
return attr
|
return attr
|
||||||
return self.all
|
return _GA(self, "all")
|
||||||
return _GA(self, _GA(self, 'name')).get(attrname)
|
return _GA(self, _GA(self, 'name')).get(attrname)
|
||||||
|
|
||||||
def __setattr__(self, attrname, value):
|
def __setattr__(self, attrname, value):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue