Skip to content

Commit 920c4e7

Browse files
author
Richard Jones
committed
backport fix from HEAD
1 parent 6fc12b0 commit 920c4e7

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ are given with the most recent entry first.
1313
- another attempt to fix cookie misbehaviour - customise cookie name using
1414
tracker name
1515
- fixed error in indexargs_url (thanks Patrick Ohly)
16+
- fixed getnode (sf bug 684531)
1617

1718

1819
2003-01-24 0.5.5

roundup/backends/back_anydbm.py

Lines changed: 2 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: back_anydbm.py,v 1.96.2.1 2003-02-06 05:44:49 richard Exp $
18+
#$Id: back_anydbm.py,v 1.96.2.2 2003-02-12 00:03:35 richard Exp $
1919
'''
2020
This module defines a backend that saves the hyperdatabase in a database
2121
chosen by anydbm. It is guaranteed to always be available in python
@@ -30,7 +30,7 @@
3030
from roundup.indexer import Indexer
3131
from roundup.backends import locking
3232
from roundup.hyperdb import String, Password, Date, Interval, Link, \
33-
Multilink, DatabaseError, Boolean, Number
33+
Multilink, DatabaseError, Boolean, Number, Node
3434

3535
#
3636
# Now the database

roundup/backends/rdbms_common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: rdbms_common.py,v 1.27.2.2 2003-02-06 05:44:49 richard Exp $
1+
# $Id: rdbms_common.py,v 1.27.2.3 2003-02-12 00:03:38 richard Exp $
22
''' Relational database (SQL) backend common code.
33
44
Basics:
@@ -27,7 +27,7 @@
2727
# roundup modules
2828
from roundup import hyperdb, date, password, roundupdb, security
2929
from roundup.hyperdb import String, Password, Date, Interval, Link, \
30-
Multilink, DatabaseError, Boolean, Number
30+
Multilink, DatabaseError, Boolean, Number, Node
3131
from roundup.backends import locking
3232

3333
# support

0 commit comments

Comments
 (0)