Skip to content

Commit b6cc859

Browse files
author
Richard Jones
committed
make sure email signature starts on a newline [SF#919759]
1 parent f09658e commit b6cc859

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ Fixed:
8181
trackers - the TEMPLATE-INFO.txt name entry has the tracker's dir name
8282
appended (so the demo tracker's template name is "classic-demo")
8383
- handle bad multilink input at item creation time better (sf bug 917834)
84+
- make sure email signature starts on a newline (sf bug 919759)
8485

8586

8687
2004-03-01 0.6.7

roundup/roundupdb.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: roundupdb.py,v 1.102 2004-03-19 04:47:59 richard Exp $
18+
# $Id: roundupdb.py,v 1.103 2004-03-22 00:15:34 richard Exp $
1919

2020
"""Extending hyperdb with types specific to issue-tracking.
2121
"""
@@ -349,7 +349,7 @@ def email_signature(self, nodeid, msgid):
349349
self.db.config.TRACKER_EMAIL))
350350

351351
line = '_' * max(len(web)+2, len(email))
352-
return '%s\n%s\n<%s>\n%s'%(line, email, web, line)
352+
return '\n%s\n%s\n<%s>\n%s'%(line, email, web, line)
353353

354354

355355
def generateCreateNote(self, nodeid):

0 commit comments

Comments
 (0)