Skip to content

Commit 57c4560

Browse files
author
Richard Jones
committed
fixed the order of the blank line and '-------' line
1 parent bf84149 commit 57c4560

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

roundup/roundupdb.py

Lines changed: 9 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: roundupdb.py,v 1.28 2001-12-10 22:20:01 richard Exp $
18+
# $Id: roundupdb.py,v 1.29 2001-12-11 04:50:49 richard Exp $
1919

2020
__doc__ = """
2121
Extending hyperdb with types specific to issue-tracking.
@@ -485,12 +485,19 @@ def generateChangeNote(self, nodeid, newvalues):
485485
change += ' -%s'%(', '.join(l))
486486
m.append('%s: %s'%(propname, change))
487487
if m:
488-
m.insert(0, '')
489488
m.insert(0, '----------')
489+
m.insert(0, '')
490490
return '\n'.join(m)
491491

492492
#
493493
# $Log: not supported by cvs2svn $
494+
# Revision 1.28 2001/12/10 22:20:01 richard
495+
# Enabled transaction support in the bsddb backend. It uses the anydbm code
496+
# where possible, only replacing methods where the db is opened (it uses the
497+
# btree opener specifically.)
498+
# Also cleaned up some change note generation.
499+
# Made the backends package work with pydoc too.
500+
#
494501
# Revision 1.27 2001/12/10 21:02:53 richard
495502
# only insert the -------- change note marker if there is a change note
496503
#

0 commit comments

Comments
 (0)