fixed issue 1894:represent requires 2 arguments in dal.py, thanks mweissen

This commit is contained in:
mdipierro
2014-03-09 17:22:39 -05:00
parent 4d03460944
commit 733fa01b7e
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
Version 2.9.4-stable+timestamp.2014.03.09.17.17.38
Version 2.9.4-stable+timestamp.2014.03.09.17.21.20

View File

@@ -11114,7 +11114,7 @@ class Rows(object):
if field.type=='blob' and not value is None:
value = base64.b64encode(value)
elif represent and field.represent:
value = field.represent(value)
value = field.represent(value,record)
row.append(none_exception(value))
writer.writerow(row)