From: richard Date: Fri, 15 Feb 2002 07:27:12 +0000 (+0000) Subject: Oops, precedences around the way w0rng. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d61fe49ea40877c1ec426e134bbb76a10710c49b;p=roundup.git Oops, precedences around the way w0rng. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@630 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/hyperdb.py b/roundup/hyperdb.py index fba1e5c..f0aaf92 100644 --- a/roundup/hyperdb.py +++ b/roundup/hyperdb.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: hyperdb.py,v 1.54 2002-02-15 07:08:44 richard Exp $ +# $Id: hyperdb.py,v 1.55 2002-02-15 07:27:12 richard Exp $ __doc__ = """ Hyperdatabase implementation, especially field types. @@ -846,7 +846,7 @@ class Class: else: continue break - elif t == 2 and node[k] is None or not v.search(node[k]): + elif t == 2 and (node[k] is None or not v.search(node[k])): # RE search break elif t == 6 and node[k] != v: @@ -1066,6 +1066,10 @@ def Choice(name, *options): # # $Log: not supported by cvs2svn $ +# Revision 1.54 2002/02/15 07:08:44 richard +# . Alternate email addresses are now available for users. See the MIGRATION +# file for info on how to activate the feature. +# # Revision 1.53 2002/01/22 07:21:13 richard # . fixed back_bsddb so it passed the journal tests #