From e6eaa2c760454ff3365915e4f0a272c0ada7779c Mon Sep 17 00:00:00 2001 From: dman13 Date: Tue, 18 Jun 2002 03:55:25 +0000 Subject: [PATCH] Fixed name/address display problem introduced by an earlier change. (instead of "name" display "name ") git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@789 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundup/roundupdb.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/roundup/roundupdb.py b/roundup/roundupdb.py index 1ab2764..3f5620b 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.58 2002-06-16 01:05:15 dman13 Exp $ +# $Id: roundupdb.py,v 1.59 2002-06-18 03:55:25 dman13 Exp $ __doc__ = """ Extending hyperdb with types specific to issue-tracking. @@ -399,7 +399,7 @@ class IssueClass(Class): authname = users.get(authid, 'username') authaddr = users.get(authid, 'address') if authaddr: - authaddr = straddr( ('',authaddr) ) + authaddr = " <%s>" % straddr( ('',authaddr) ) else: authaddr = '' @@ -659,6 +659,11 @@ class IssueClass(Class): # # $Log: not supported by cvs2svn $ +# Revision 1.58 2002/06/16 01:05:15 dman13 +# Removed temporary workaround -- it seems it was a bug in the +# nosyreaction detector in the 0.4.1 extended template and has already +# been fixed in CVS. We'll see. +# # Revision 1.57 2002/06/15 15:49:29 dman13 # Use 'email' instead of 'rfc822', if available. # Don't use isinstance() on a string (not allowed in python 2.1). -- 2.30.2