use correct getContextAttr() method: from object, not class

This commit is contained in:
Helmut Merz 2012-02-26 10:20:50 +01:00
parent d908b18188
commit 1be9a85798

View file

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