File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ pending security authenticate over a secure connection
3737pending security optionally auth with Basic HTTP auth instead of cookies
3838pending security use digital signatures in mailgw
3939pending 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.
4042pending web I18N
4143pending web Better message summary display (feature request #520244)
4244pending web Navigating around the issues (feature request #559149)
Original file line number Diff line number Diff line change 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'''
2020This module defines a backend that saves the hyperdatabase in a database
2121chosen 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
You can’t perform that action at this time.
0 commit comments