Mercurial > p > roundup > code
diff roundup/hyperdb.py @ 380:a1331423eb93
Fixed issues with nosy reaction and author copies.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 12 Nov 2001 22:01:07 +0000 |
| parents | 93dc08528ad9 |
| children | d4b19c2ee740 |
line wrap: on
line diff
--- a/roundup/hyperdb.py Fri Nov 09 22:33:28 2001 +0000 +++ b/roundup/hyperdb.py Mon Nov 12 22:01:07 2001 +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.30 2001-11-09 10:11:08 richard Exp $ +# $Id: hyperdb.py,v 1.31 2001-11-12 22:01:06 richard Exp $ # standard python modules import cPickle, re, string @@ -545,7 +545,7 @@ if node.has_key(self.db.RETIRED_FLAG): continue for key, value in requirements.items(): - if node[key].lower() != value: + if node[key] and node[key].lower() != value: break else: l.append(nodeid) @@ -849,6 +849,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.30 2001/11/09 10:11:08 richard +# . roundup-admin now handles all hyperdb exceptions +# # Revision 1.29 2001/10/27 00:17:41 richard # Made Class.stringFind() do caseless matching. #
