Skip to content

Commit 466e0a5

Browse files
author
Richard Jones
committed
merge from HEAD
1 parent a3b9b11 commit 466e0a5

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
@@ -7,6 +7,7 @@ Fixed:
77
trackers - the TEMPLATE-INFO.txt name entry has the tracker's dir name
88
appended (so the demo tracker's template name is "classic-demo")
99
- handle bad multilink input at item creation time better (sf bug 917834)
10+
- make sure email signature starts on a newline (sf bug 919759)
1011

1112

1213
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.86.2.3 2004-02-28 22:53:16 richard Exp $
18+
# $Id: roundupdb.py,v 1.86.2.4 2004-03-22 00:16:33 richard Exp $
1919

2020
__doc__ = """
2121
Extending hyperdb with types specific to issue-tracking.
@@ -376,7 +376,7 @@ def email_signature(self, nodeid, msgid):
376376
self.db.config.TRACKER_EMAIL))
377377

378378
line = '_' * max(len(web)+2, len(email))
379-
return '%s\n%s\n<%s>\n%s'%(line, email, web, line)
379+
return '\n%s\n%s\n<%s>\n%s'%(line, email, web, line)
380380

381381

382382
def generateCreateNote(self, nodeid):

0 commit comments

Comments
 (0)