Skip to content

Commit fe1bcd1

Browse files
author
Richard Jones
committed
oops
1 parent 45c061f commit fe1bcd1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

roundup/hyperdb.py

Lines changed: 5 additions & 2 deletions
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.45 2002-01-02 04:18:17 richard Exp $
18+
# $Id: hyperdb.py,v 1.46 2002-01-07 10:42:23 richard Exp $
1919

2020
__doc__ = """
2121
Hyperdatabase implementation, especially field types.
@@ -978,7 +978,7 @@ class Node:
978978
def __init__(self, cl, nodeid, cache=1):
979979
self.__dict__['cl'] = cl
980980
self.__dict__['nodeid'] = nodeid
981-
self.cache = cache
981+
self.__dict__['cache'] = cache
982982
def keys(self, protected=1):
983983
return self.cl.getprops(protected=protected).keys()
984984
def values(self, protected=1):
@@ -1027,6 +1027,9 @@ def Choice(name, *options):
10271027

10281028
#
10291029
# $Log: not supported by cvs2svn $
1030+
# Revision 1.45 2002/01/02 04:18:17 richard
1031+
# hyperdb docstrings
1032+
#
10301033
# Revision 1.44 2002/01/02 02:31:38 richard
10311034
# Sorry for the huge checkin message - I was only intending to implement #496356
10321035
# but I found a number of places where things had been broken by transactions:

0 commit comments

Comments
 (0)