changeset 2095:7d886a79ab67

make sure email signature starts on a newline [SF#919759]
author Richard Jones <richard@users.sourceforge.net>
date Mon, 22 Mar 2004 00:15:34 +0000
parents 85d8ebe34c40
children 37ede7c5f5c5
files CHANGES.txt roundup/roundupdb.py
diffstat 2 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGES.txt	Sun Mar 21 23:45:44 2004 +0000
+++ b/CHANGES.txt	Mon Mar 22 00:15:34 2004 +0000
@@ -81,6 +81,7 @@
   trackers - the TEMPLATE-INFO.txt name entry has the tracker's dir name
   appended (so the demo tracker's template name is "classic-demo")
 - handle bad multilink input at item creation time better (sf bug 917834)
+- make sure email signature starts on a newline (sf bug 919759)
 
 
 2004-03-01 0.6.7
--- a/roundup/roundupdb.py	Sun Mar 21 23:45:44 2004 +0000
+++ b/roundup/roundupdb.py	Mon Mar 22 00:15:34 2004 +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.102 2004-03-19 04:47:59 richard Exp $
+# $Id: roundupdb.py,v 1.103 2004-03-22 00:15:34 richard Exp $
 
 """Extending hyperdb with types specific to issue-tracking.
 """
@@ -349,7 +349,7 @@
             self.db.config.TRACKER_EMAIL))
 
         line = '_' * max(len(web)+2, len(email))
-        return '%s\n%s\n<%s>\n%s'%(line, email, web, line)
+        return '\n%s\n%s\n<%s>\n%s'%(line, email, web, line)
 
 
     def generateCreateNote(self, nodeid):

Roundup Issue Tracker: http://roundup-tracker.org/