Mercurial > p > roundup > code
changeset 442:52b5f53d12f3
fixed the order of the blank line and '-------' line
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 11 Dec 2001 04:50:49 +0000 |
| parents | 698534628072 |
| children | a0c598702f17 |
| files | roundup/roundupdb.py |
| diffstat | 1 files changed, 9 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/roundupdb.py Mon Dec 10 23:17:20 2001 +0000 +++ b/roundup/roundupdb.py Tue Dec 11 04:50:49 2001 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: roundupdb.py,v 1.28 2001-12-10 22:20:01 richard Exp $ +# $Id: roundupdb.py,v 1.29 2001-12-11 04:50:49 richard Exp $ __doc__ = """ Extending hyperdb with types specific to issue-tracking. @@ -485,12 +485,19 @@ change += ' -%s'%(', '.join(l)) m.append('%s: %s'%(propname, change)) if m: + m.insert(0, '----------') m.insert(0, '') - m.insert(0, '----------') return '\n'.join(m) # # $Log: not supported by cvs2svn $ +# Revision 1.28 2001/12/10 22:20:01 richard +# Enabled transaction support in the bsddb backend. It uses the anydbm code +# where possible, only replacing methods where the db is opened (it uses the +# btree opener specifically.) +# Also cleaned up some change note generation. +# Made the backends package work with pydoc too. +# # Revision 1.27 2001/12/10 21:02:53 richard # only insert the -------- change note marker if there is a change note #
