From: richard Date: Tue, 11 Dec 2001 04:50:49 +0000 (+0000) Subject: fixed the order of the blank line and '-------' line X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b27bf56b09a9630efe6fc809a4d9c4ff0d084fad;p=roundup.git fixed the order of the blank line and '-------' line git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@454 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/roundupdb.py b/roundup/roundupdb.py index 966f77d..0cec95f 100644 --- a/roundup/roundupdb.py +++ b/roundup/roundupdb.py @@ -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 @@ class IssueClass(Class): 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 #