From 5f275700178798e04b5f384be50fb842afaebf46 Mon Sep 17 00:00:00 2001 From: richard Date: Mon, 22 Mar 2004 00:15:34 +0000 Subject: [PATCH] make sure email signature starts on a newline (sf bug 919759) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2163 57a73879-2fb5-44c3-a270-3262357dd7e2 --- CHANGES.txt | 1 + roundup/roundupdb.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 9b15a73..5148bd1 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -81,6 +81,7 @@ Fixed: 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 diff --git a/roundup/roundupdb.py b/roundup/roundupdb.py index 46f383d..0083806 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.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 @@ class IssueClass: 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): -- 2.30.2