fix: get self context attr

This commit is contained in:
hplattner 2012-03-01 12:15:19 +01:00
parent d908b18188
commit 6fd1a5ed8f

View file

@ -47,7 +47,7 @@ class Row(BaseRow):
attributeHandlers = {} attributeHandlers = {}
def getRawValue(self, attr): def getRawValue(self, attr):
return self.attributeHandlers.get(attr, Row.getContextAttr)(self, attr) return self.attributeHandlers.get(attr, self.getContextAttr)(self, attr)
@staticmethod @staticmethod
def getContextAttr(obj, attr): def getContextAttr(obj, attr):