diff roundup/backends/back_anydbm.py @ 2597:c86b2179085b

fix journal export of files to remove content from CSV files
author Richard Jones <richard@users.sourceforge.net>
date Tue, 20 Jul 2004 05:58:07 +0000
parents 091711fb2f8c
children f25ff5a05abd
line wrap: on
line diff
--- a/roundup/backends/back_anydbm.py	Tue Jul 20 04:38:54 2004 +0000
+++ b/roundup/backends/back_anydbm.py	Tue Jul 20 05:58:07 2004 +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.160 2004-07-02 05:22:09 richard Exp $
+#$Id: back_anydbm.py,v 1.161 2004-07-20 05:57:54 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
 versions >2.1.1 (the dumbdbm fallback in 2.1.1 and earlier has several
@@ -2030,7 +2030,7 @@
         for nodeid, l in d.items():
             self.db.setjournal(self.classname, nodeid, l)
 
-class FileClass(Class, hyperdb.FileClass):
+class FileClass(hyperdb.FileClass, Class):
     '''This class defines a large chunk of data. To support this, it has a
        mandatory String property "content" which is typically saved off
        externally to the hyperdb.

Roundup Issue Tracker: http://roundup-tracker.org/