7693: Broken proxies

This commit is contained in:
Paul Franklin 2014-05-19 11:33:09 -07:00
parent 399e902a48
commit 9d6049d1af

View File

@ -472,6 +472,10 @@ class ProxyDbBase(DbReadBase):
setattr(self, name, attr)
return attr
if sname[0] == 'remove':
# Default behaviour: lookup attribute in parent object
return getattr(self.db, name)
# if a write-method:
if (name in DbWriteBase.__dict__ and
not name.startswith("__") and