Mercurial > p > roundup > code
diff roundup/cgi/client.py @ 2041:2add75e296d2 maint-0.6
fixed rego
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 24 Feb 2004 21:13:26 +0000 |
| parents | 6a9e4e07c7d9 |
| children | 6e708cf528e1 |
line wrap: on
line diff
--- a/roundup/cgi/client.py Mon Feb 23 05:47:12 2004 +0000 +++ b/roundup/cgi/client.py Tue Feb 24 21:13:26 2004 +0000 @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.130.2.9 2004-02-13 01:35:02 richard Exp $ +# $Id: client.py,v 1.130.2.10 2004-02-24 21:13:26 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -730,7 +730,7 @@ ''' # parse the props from the form try: - props = self.parsePropsFromForm()[0][('user', None)] + props = self.parsePropsFromForm(create=True)[0][('user', None)] except (ValueError, KeyError), message: self.error_message.append(_('Error: ') + str(message)) return
