Name clash in dataforms.

This commit is contained in:
Tomasz Melcer 2006-11-19 18:30:58 +00:00
parent 917f7e8db6
commit 07bd24c2e8
1 changed files with 2 additions and 2 deletions

View File

@ -364,8 +364,8 @@ class DataForm(ExtendedNode):
# TODO: the same code is in TextMultiField. join them
def fget(self):
value = u''
for value in self.getTags('value'):
value += '\n' + value.getData()
for valuenode in self.getTags('value'):
value += '\n' + valuenode.getData()
return value[1:]
def fset(self, value):
fdel(self)