From 319a7b0cb93fa7e45201b1c6f38f4cbef53d8300 Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Tue, 10 Jul 2012 17:27:39 +0200 Subject: [PATCH] report field: use getValue() as default for getSelectValue() --- expert/field.py | 2 +- expert/report.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/expert/field.py b/expert/field.py index 502f34a..2295771 100644 --- a/expert/field.py +++ b/expert/field.py @@ -36,7 +36,7 @@ from loops import util class Field(BaseField): def getSelectValue(self, row): - return self.getRawValue(row) + return self.getValue(row) class TextField(Field): diff --git a/expert/report.py b/expert/report.py index 2255ce9..c213a33 100644 --- a/expert/report.py +++ b/expert/report.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2011 Helmut Merz helmutm@cy55.de +# Copyright (c) 2012 Helmut Merz helmutm@cy55.de # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by