Code

Oops, precedences around the way w0rng.
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 15 Feb 2002 07:27:12 +0000 (07:27 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 15 Feb 2002 07:27:12 +0000 (07:27 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@630 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/hyperdb.py

index fba1e5ce66b3f3226a777c95fd882c8f5b2e12a9..f0aaf929637b1fdd6143266719275f5e0a780537 100644 (file)
@@ -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
 #