From: richard Date: Mon, 7 Apr 2003 06:27:30 +0000 (+0000) Subject: URL cited in roundup email confusing dumb Email clients (sf bug 716585) X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=39df5e1491505ac4a0904f8f3610bf4053c583c4;p=roundup.git URL cited in roundup email confusing dumb Email clients (sf bug 716585) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1649 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index 4b029d3..fc64ee6 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -81,6 +81,7 @@ Fixed: - 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 diff --git a/roundup/roundupdb.py b/roundup/roundupdb.py index 0bf115d..8bf148f 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.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 @@ class IssueClass: 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):