Skip to content

Commit fb33c6f

Browse files
author
Richard Jones
committed
fix to fix
1 parent c3d87db commit fb33c6f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

roundup/backends/back_anydbm.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
#$Id: back_anydbm.py,v 1.179.2.1 2004-12-14 23:01:56 richard Exp $
18+
#$Id: back_anydbm.py,v 1.179.2.2 2005-01-04 03:25:24 richard Exp $
1919
'''This module defines a backend that saves the hyperdatabase in a
2020
database chosen by anydbm. It is guaranteed to always be available in python
2121
versions >2.1.1 (the dumbdbm fallback in 2.1.1 and earlier has several
@@ -2036,7 +2036,8 @@ def export_journals(self):
20362036
elif isinstance(prop, hyperdb.Password):
20372037
value = str(value)
20382038
export_data[propname] = value
2039-
l = [nodeid, date, user, action, export_data]
2039+
params = export_data
2040+
l = [nodeid, date, user, action, params]
20402041
r.append(map(repr, l))
20412042
return r
20422043

0 commit comments

Comments
 (0)