Code

URL cited in roundup email confusing dumb Email clients (sf bug 716585)
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 7 Apr 2003 06:27:30 +0000 (06:27 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 7 Apr 2003 06:27:30 +0000 (06:27 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1649 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/roundupdb.py

index 4b029d389e41ae30c106f0b090b31e15d400e0cc..fc64ee6f619fbac1776204863a1aaa613bbbf917 100644 (file)
@@ -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
index 0bf115da95f8a627c9103b08a567c5777a164464..8bf148f21fdc4d549069c6908ee27af85232d288 100644 (file)
@@ -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):