Roundup Tracker - Issues

Message5833

Author rouilj
Recipients richard, rouilj, techtonik
Date 2016-07-11.02:14:04
Message-id <1468203244.39.0.868741603916.issue2167369@psf.upfronthosting.co.za>
In-reply-to
This is fixed in current code by handling the exception:

            elif isinstance(propclass, hyperdb.Number):
                if type(v) != type([]):
                    try :
                        v = v.split(',')
                    except AttributeError :
                        v = [v]
                l.append((OTHER, k, [float(val) for val in v]))

looks like it's part of:

changeset:   4364:0e81742d0e2f
user:        Ralf Schlatterbeck <...>
date:        Fri Mar 05 14:22:34 2010 +0000
files:       roundup/backends/back_anydbm.py test/db_test_base.py
description:
- unify number searching across backends
History
Date User Action Args
2016-07-11 02:14:04rouiljsetmessageid: <1468203244.39.0.868741603916.issue2167369@psf.upfronthosting.co.za>
2016-07-11 02:14:04rouiljsetrecipients: + rouilj, richard, techtonik
2016-07-11 02:14:04rouiljlinkissue2167369 messages
2016-07-11 02:14:04rouiljcreate