Skip to content

Commit ead73ce

Browse files
author
Derrick Hudson
committed
Fixed name/address display problem introduced by an earlier change.
(instead of "name<addr>" display "name <addr>")
1 parent acfb58b commit ead73ce

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

roundup/roundupdb.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: roundupdb.py,v 1.58 2002-06-16 01:05:15 dman13 Exp $
18+
# $Id: roundupdb.py,v 1.59 2002-06-18 03:55:25 dman13 Exp $
1919

2020
__doc__ = """
2121
Extending hyperdb with types specific to issue-tracking.
@@ -399,7 +399,7 @@ def send_message(self, nodeid, msgid, note, sendto):
399399
authname = users.get(authid, 'username')
400400
authaddr = users.get(authid, 'address')
401401
if authaddr:
402-
authaddr = straddr( ('',authaddr) )
402+
authaddr = " <%s>" % straddr( ('',authaddr) )
403403
else:
404404
authaddr = ''
405405

@@ -659,6 +659,11 @@ def generateChangeNote(self, nodeid, oldvalues):
659659

660660
#
661661
# $Log: not supported by cvs2svn $
662+
# Revision 1.58 2002/06/16 01:05:15 dman13
663+
# Removed temporary workaround -- it seems it was a bug in the
664+
# nosyreaction detector in the 0.4.1 extended template and has already
665+
# been fixed in CVS. We'll see.
666+
#
662667
# Revision 1.57 2002/06/15 15:49:29 dman13
663668
# Use 'email' instead of 'rfc822', if available.
664669
# Don't use isinstance() on a string (not allowed in python 2.1).

0 commit comments

Comments
 (0)