Skip to content

Commit 60c135f

Browse files
author
Richard Jones
committed
URL cited in roundup email confusing dumb Email clients [SF#716585]
1 parent e746821 commit 60c135f

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
- finally, tables autosize columns (sf bug 609070)
8282
- added creation to index columns (sf bug 708247)
8383
- fixed missing (pre-commit) journal entries in *dbm backends (sf bug 679217)
84+
- URL cited in roundup email confusing dumb Email clients (sf bug 716585)
8485

8586

8687
2003-??-?? 0.5.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.82 2003-02-24 05:16:57 richard Exp $
18+
# $Id: roundupdb.py,v 1.83 2003-04-07 06:27:30 richard Exp $
1919

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

364364
line = '_' * max(len(web), len(email))
365-
return '%s\n%s\n%s\n%s'%(line, email, web, line)
365+
return '%s\n%s\n<%s>\n%s'%(line, email, web, line)
366366

367367

368368
def generateCreateNote(self, nodeid):

0 commit comments

Comments
 (0)