diff roundup/roundupdb.py @ 776:60189cf7ba8e

Fixed name/address display problem introduced by an earlier change. (instead of "name<addr>" display "name <addr>")
author Derrick Hudson <dman13@users.sourceforge.net>
date Tue, 18 Jun 2002 03:55:25 +0000
parents db5daf396518
children 0779ea9f1f18
line wrap: on
line diff
--- a/roundup/roundupdb.py	Mon Jun 17 23:15:29 2002 +0000
+++ b/roundup/roundupdb.py	Tue Jun 18 03:55:25 2002 +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.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 @@
             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 @@
 
 #
 # $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).

Roundup Issue Tracker: http://roundup-tracker.org/