diff roundup/cgi/client.py @ 1313:1acca3edf870

value is already extracted...
author Richard Jones <richard@users.sourceforge.net>
date Thu, 28 Nov 2002 07:02:48 +0000
parents 71be6588904f
children 62103ced4482
line wrap: on
line diff
--- a/roundup/cgi/client.py	Thu Nov 28 07:02:23 2002 +0000
+++ b/roundup/cgi/client.py	Thu Nov 28 07:02:48 2002 +0000
@@ -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 @@
             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):

Roundup Issue Tracker: http://roundup-tracker.org/