Mercurial > p > roundup > code
diff roundup/backends/back_anydbm.py @ 1159:a1a548c15260
include the "content" property in getprops....
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 17 Sep 2002 23:59:59 +0000 |
| parents | 81941abedb0a |
| children | af104fa52746 |
line wrap: on
line diff
--- a/roundup/backends/back_anydbm.py Tue Sep 17 23:59:32 2002 +0000 +++ b/roundup/backends/back_anydbm.py Tue Sep 17 23:59:59 2002 +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.79 2002-09-15 23:06:20 richard Exp $ +#$Id: back_anydbm.py,v 1.80 2002-09-17 23:59:59 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 @@ -1877,8 +1877,7 @@ modified. ''' d = Class.getprops(self, protected=protected).copy() - if protected: - d['content'] = hyperdb.String() + d['content'] = hyperdb.String() return d def index(self, nodeid):
