Mercurial > p > roundup > code
changeset 618:9431715612ac
Oops, precedences around the way w0rng.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 15 Feb 2002 07:27:12 +0000 |
| parents | edd210915e64 |
| children | bb52c1419b4c |
| files | roundup/hyperdb.py |
| diffstat | 1 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/hyperdb.py Fri Feb 15 07:08:45 2002 +0000 +++ b/roundup/hyperdb.py Fri Feb 15 07:27:12 2002 +0000 @@ -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 @@ 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 @@ # # $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 #
