From 6fd1a5ed8f2d3564ba0b0154b1e43ea0566ccb75 Mon Sep 17 00:00:00 2001 From: hplattner Date: Thu, 1 Mar 2012 12:15:19 +0100 Subject: [PATCH] fix: get self context attr --- composer/report/result.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer/report/result.py b/composer/report/result.py index 9af877f..7055c40 100644 --- a/composer/report/result.py +++ b/composer/report/result.py @@ -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):