diff roundup/backends/back_anydbm.py @ 3052:230f7394cce9

fix to fix
author Richard Jones <richard@users.sourceforge.net>
date Tue, 04 Jan 2005 03:26:24 +0000
parents 855e9f99c96c
children b9a819ef7554
line wrap: on
line diff
--- a/roundup/backends/back_anydbm.py	Tue Jan 04 01:44:29 2005 +0000
+++ b/roundup/backends/back_anydbm.py	Tue Jan 04 03:26:24 2005 +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.180 2004-12-14 23:02:33 richard Exp $
+#$Id: back_anydbm.py,v 1.181 2005-01-04 03:26:24 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
@@ -2036,7 +2036,8 @@
                         elif isinstance(prop, hyperdb.Password):
                             value = str(value)
                         export_data[propname] = value
-                l = [nodeid, date, user, action, export_data]
+                    params = export_data
+                l = [nodeid, date, user, action, params]
                 r.append(map(repr, l))
         return r
 

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