|
15 | 15 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
16 | 16 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
17 | 17 | # |
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 $ |
19 | 19 |
|
20 | 20 | __doc__ = """ |
21 | 21 | Extending hyperdb with types specific to issue-tracking. |
@@ -399,7 +399,7 @@ def send_message(self, nodeid, msgid, note, sendto): |
399 | 399 | authname = users.get(authid, 'username') |
400 | 400 | authaddr = users.get(authid, 'address') |
401 | 401 | if authaddr: |
402 | | - authaddr = straddr( ('',authaddr) ) |
| 402 | + authaddr = " <%s>" % straddr( ('',authaddr) ) |
403 | 403 | else: |
404 | 404 | authaddr = '' |
405 | 405 |
|
@@ -659,6 +659,11 @@ def generateChangeNote(self, nodeid, oldvalues): |
659 | 659 |
|
660 | 660 | # |
661 | 661 | # $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 | +# |
662 | 667 | # Revision 1.57 2002/06/15 15:49:29 dman13 |
663 | 668 | # Use 'email' instead of 'rfc822', if available. |
664 | 669 | # Don't use isinstance() on a string (not allowed in python 2.1). |
|
0 commit comments