Roundup Tracker - Issues

Message1280

Author gtegos
Recipients
Date 2004-05-31.13:33:33
Message-id
In-reply-to
If using non-integer values in Number fields, Class.filter 
function throws an exception. 

The following change corrects the problem:

            elif isinstance(propclass, Number):
                l.append((OTHER, k, int(v)))
change to:
            elif isinstance(propclass, Number):
                l.append((OTHER, k, float(v)))
History
Date User Action Args
2009-02-03 14:20:46adminlinkissue963584 messages
2009-02-03 14:20:46admincreate