Mercurial > p > roundup > code
diff roundup/hyperdb.py @ 761:e7b89de78052
[SF#565979] code error in hyperdb.Class.find
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 11 Jun 2002 05:02:37 +0000 |
| parents | 51c425129b35 |
| children | d913440c534f |
line wrap: on
line diff
--- a/roundup/hyperdb.py Tue Jun 11 04:59:51 2002 +0000 +++ b/roundup/hyperdb.py Tue Jun 11 05:02:37 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.66 2002-05-25 07:16:24 rochecompaan Exp $ +# $Id: hyperdb.py,v 1.67 2002-06-11 05:02:37 richard Exp $ __doc__ = """ Hyperdatabase implementation, especially field types. @@ -798,6 +798,7 @@ if node.has_key(self.db.RETIRED_FLAG): continue for propname, nodeid in propspec: + prop = self.properties[propname] property = node[propname] if isinstance(prop, Link) and nodeid == property: l.append(id) @@ -1157,6 +1158,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.66 2002/05/25 07:16:24 rochecompaan +# Merged search_indexing-branch with HEAD +# # Revision 1.65 2002/05/22 04:12:05 richard # . applied patch #558876 ] cgi client customization # ... with significant additions and modifications ;)
