Skip to content

Commit 6596e65

Browse files
author
Richard Jones
committed
merge from maint-0-5
1 parent 32e2bd0 commit 6596e65

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

TODO.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ pending security authenticate over a secure connection
3737
pending security optionally auth with Basic HTTP auth instead of cookies
3838
pending security use digital signatures in mailgw
3939
pending admin "roundup-admin list" should list all the classnames
40+
pending admin the find command in roundup-admin could do more than equality
41+
checks != for instance. Also the ability to check =None.
4042
pending web I18N
4143
pending web Better message summary display (feature request #520244)
4244
pending web Navigating around the issues (feature request #559149)

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.86 2002-09-26 03:04:24 richard Exp $
18+
#$Id: back_anydbm.py,v 1.87 2002-10-04 06:30:30 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
@@ -1169,7 +1169,7 @@ class or a KeyError is raised.
11691169

11701170
if self.do_journal and prop.do_journal:
11711171
# register the unlink with the old linked node
1172-
if node[propname] is not None:
1172+
if node.has_key(propname) and node[propname] is not None:
11731173
self.db.addjournal(link_class, node[propname], 'unlink',
11741174
(self.classname, nodeid, propname))
11751175

0 commit comments

Comments
 (0)