fix method decorator for default attribute access
This commit is contained in:
parent
add1a31bae
commit
ab20786f34
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ class Row(BaseRow):
|
||||||
def getRawValue(self, attr):
|
def getRawValue(self, attr):
|
||||||
return self.attributeHandlers.get(attr, Row.getContextAttr)(self, attr)
|
return self.attributeHandlers.get(attr, Row.getContextAttr)(self, attr)
|
||||||
|
|
||||||
@classmethod
|
@staticmethod
|
||||||
def getContextAttr(obj, attr):
|
def getContextAttr(obj, attr):
|
||||||
return getattr(obj.context, attr)
|
return getattr(obj.context, attr)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue