Mercurial > p > roundup > code
diff roundup/cgi/templating.py @ 3972:eee76dd4a09f
'Make a Copy' failed with more than one person in nosy list [SF#1906147]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 07 Mar 2008 00:35:47 +0000 |
| parents | ff3a8b7d1819 |
| children | 13161539e5bd |
line wrap: on
line diff
--- a/roundup/cgi/templating.py Sat Mar 01 08:18:07 2008 +0000 +++ b/roundup/cgi/templating.py Fri Mar 07 00:35:47 2008 +0000 @@ -2134,7 +2134,7 @@ value = value.value.strip() if not value: return [] - return value.split(',') + return [v.strip() for v in value.split(',')] class HTMLRequest(HTMLInputMixin): """The *request*, holding the CGI form and environment.
