summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b6a8d4d)
raw | patch | inline | side by side (parent: b6a8d4d)
author | dman13 <dman13@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 18 Jun 2002 03:55:25 +0000 (03:55 +0000) | ||
committer | dman13 <dman13@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 18 Jun 2002 03:55:25 +0000 (03:55 +0000) |
(instead of "name<addr>" display "name <addr>")
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@789 57a73879-2fb5-44c3-a270-3262357dd7e2
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@789 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/roundupdb.py | patch | blob | history |
diff --git a/roundup/roundupdb.py b/roundup/roundupdb.py
index 1ab2764af0cd02d134ee0558dfb19e6bb9ea9919..3f5620b513513807154e04a650e428bc1fac6c84 100644 (file)
--- a/roundup/roundupdb.py
+++ b/roundup/roundupdb.py
# 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.
authname = users.get(authid, 'username')
authaddr = users.get(authid, 'address')
if authaddr:
- authaddr = straddr( ('',authaddr) )
+ authaddr = " <%s>" % straddr( ('',authaddr) )
else:
authaddr = ''
#
# $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).