Mercurial > p > roundup > code
diff roundup/backends/back_anydbm.py @ 1752:27917dce3814 maint-0.6
backporting fix from HEAD
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 26 Aug 2003 00:15:09 +0000 |
| parents | 7df9d46b8140 |
| children | 4ad75ca452d9 |
line wrap: on
line diff
--- a/roundup/backends/back_anydbm.py Mon Aug 18 06:32:45 2003 +0000 +++ b/roundup/backends/back_anydbm.py Tue Aug 26 00:15:09 2003 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -#$Id: back_anydbm.py,v 1.122 2003-08-12 01:49:30 richard Exp $ +#$Id: back_anydbm.py,v 1.122.2.1 2003-08-26 00:12:28 richard Exp $ ''' This module defines a backend that saves the hyperdatabase in a database chosen by anydbm. It is guaranteed to always be available in python @@ -963,7 +963,7 @@ d[self.db.RETIRED_FLAG] = 1 continue elif value is None: - # don't set Nones + d[propname] = None continue prop = properties[propname]
