Mercurial > p > roundup > code
changeset 1577:e0f4e3561572
URL cited in roundup email confusing dumb Email clients [SF#716585]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 07 Apr 2003 06:27:30 +0000 |
| parents | 80519db85eac |
| children | ba13c04814f0 |
| files | CHANGES.txt roundup/roundupdb.py |
| diffstat | 2 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Mon Apr 07 03:47:44 2003 +0000 +++ b/CHANGES.txt Mon Apr 07 06:27:30 2003 +0000 @@ -81,6 +81,7 @@ - finally, tables autosize columns (sf bug 609070) - added creation to index columns (sf bug 708247) - fixed missing (pre-commit) journal entries in *dbm backends (sf bug 679217) +- URL cited in roundup email confusing dumb Email clients (sf bug 716585) 2003-??-?? 0.5.7
--- a/roundup/roundupdb.py Mon Apr 07 03:47:44 2003 +0000 +++ b/roundup/roundupdb.py Mon Apr 07 06:27:30 2003 +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.82 2003-02-24 05:16:57 richard Exp $ +# $Id: roundupdb.py,v 1.83 2003-04-07 06:27:30 richard Exp $ __doc__ = """ Extending hyperdb with types specific to issue-tracking. @@ -362,7 +362,7 @@ self.db.config.TRACKER_EMAIL)) line = '_' * max(len(web), len(email)) - return '%s\n%s\n%s\n%s'%(line, email, web, line) + return '%s\n%s\n<%s>\n%s'%(line, email, web, line) def generateCreateNote(self, nodeid):
