Skip to content

Commit b35d092

Browse files
author
Richard Jones
committed
more FieldStorage fun
1 parent 1e3aa92 commit b35d092

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/cgi/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: client.py,v 1.9 2002-09-03 07:13:42 richard Exp $
1+
# $Id: client.py,v 1.10 2002-09-03 07:42:38 richard Exp $
22

33
__doc__ = """
44
WWW request handler (also used in the stand-alone server).
@@ -1034,7 +1034,7 @@ def parsePropsFromForm(db, cl, form, nodeid=0, num_re=re.compile('^\d+$')):
10341034
elif isinstance(proptype, hyperdb.Multilink):
10351035
value = form[key]
10361036
if not isinstance(value, type([])):
1037-
value = [i.strip() for i in value.split(',')]
1037+
value = [i.strip() for i in value.value.split(',')]
10381038
else:
10391039
value = [i.value.strip() for i in value]
10401040
link = cl.properties[key].classname

0 commit comments

Comments
 (0)