From: richard Date: Thu, 28 Nov 2002 07:02:48 +0000 (+0000) Subject: value is already extracted... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=36645e01f215fb9f23cd69997b59e9baa810f663;p=roundup.git value is already extracted... git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1387 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/cgi/client.py b/roundup/cgi/client.py index 6f598c7..1a301fc 100644 --- a/roundup/cgi/client.py +++ b/roundup/cgi/client.py @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.56 2002-11-06 05:39:50 richard Exp $ +# $Id: client.py,v 1.57 2002-11-28 07:02:48 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -1218,12 +1218,12 @@ def parsePropsFromForm(db, cl, form, nodeid=0, num_re=re.compile('^\d+$')): value = password.Password(value) elif isinstance(proptype, hyperdb.Date): if value: - value = date.Date(value.value.strip()) + value = date.Date(value) else: continue elif isinstance(proptype, hyperdb.Interval): if value: - value = date.Interval(value.value.strip()) + value = date.Interval(value) else: continue elif isinstance(proptype, hyperdb.Link):