Code

fixed the order of the blank line and '-------' line
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 11 Dec 2001 04:50:49 +0000 (04:50 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 11 Dec 2001 04:50:49 +0000 (04:50 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@454 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/roundupdb.py

index 966f77db0cbc04c4df0a63fe9833fb74ab7a68ea..0cec95fd8f636d0d872174528c889ca103c35734 100644 (file)
@@ -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
 #