Code

include the "content" property in getprops....
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 17 Sep 2002 23:59:59 +0000 (23:59 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 17 Sep 2002 23:59:59 +0000 (23:59 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1183 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/backends/back_anydbm.py

index 91f8a76a4221d7ee7be304f19af475493bdf89e1..e50a9603c0366e5125470da4489b1e2f485a7336 100644 (file)
@@ -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 @@ class FileClass(Class):
             modified.
         '''
         d = Class.getprops(self, protected=protected).copy()
-        if protected:
-            d['content'] = hyperdb.String()
+        d['content'] = hyperdb.String()
         return d
 
     def index(self, nodeid):