Mercurial > p > roundup > code
changeset 1029:c3e391d9c4e9
more FieldStorage fun
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 03 Sep 2002 07:42:38 +0000 |
| parents | 16498e77e3ff |
| children | f5216dbced55 |
| files | roundup/cgi/client.py |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/cgi/client.py Tue Sep 03 07:33:01 2002 +0000 +++ b/roundup/cgi/client.py Tue Sep 03 07:42:38 2002 +0000 @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.9 2002-09-03 07:13:42 richard Exp $ +# $Id: client.py,v 1.10 2002-09-03 07:42:38 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -1034,7 +1034,7 @@ elif isinstance(proptype, hyperdb.Multilink): value = form[key] if not isinstance(value, type([])): - value = [i.strip() for i in value.split(',')] + value = [i.strip() for i in value.value.split(',')] else: value = [i.value.strip() for i in value] link = cl.properties[key].classname
