Skip to content

Commit 40058e9

Browse files
author
Richard Jones
committed
[SF#565979] code error in hyperdb.Class.find
1 parent a7ea48c commit 40058e9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ Fixed:
6464
wasn't necessary (font specs, styles never used) and added a style for
6565
message content
6666
. build htmlbase if tests are run using CVS checkout
67+
. #565979 ] code error in hyperdb.Class.find
6768

6869
2002-03-25 - 0.4.1
6970
Feature:

roundup/hyperdb.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: hyperdb.py,v 1.66 2002-05-25 07:16:24 rochecompaan Exp $
18+
# $Id: hyperdb.py,v 1.67 2002-06-11 05:02:37 richard Exp $
1919

2020
__doc__ = """
2121
Hyperdatabase implementation, especially field types.
@@ -798,6 +798,7 @@ def find(self, **propspec):
798798
if node.has_key(self.db.RETIRED_FLAG):
799799
continue
800800
for propname, nodeid in propspec:
801+
prop = self.properties[propname]
801802
property = node[propname]
802803
if isinstance(prop, Link) and nodeid == property:
803804
l.append(id)
@@ -1157,6 +1158,9 @@ def Choice(name, db, *options):
11571158

11581159
#
11591160
# $Log: not supported by cvs2svn $
1161+
# Revision 1.66 2002/05/25 07:16:24 rochecompaan
1162+
# Merged search_indexing-branch with HEAD
1163+
#
11601164
# Revision 1.65 2002/05/22 04:12:05 richard
11611165
# . applied patch #558876 ] cgi client customization
11621166
# ... with significant additions and modifications ;)

0 commit comments

Comments
 (0)