summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d53f951)
raw | patch | inline | side by side (parent: d53f951)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 22 Mar 2004 00:15:34 +0000 (00:15 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 22 Mar 2004 00:15:34 +0000 (00:15 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2163 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
roundup/roundupdb.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 9b15a736d9f6a77afcb581f6092c4e79d1bb2567..5148bd1aebb65b5fd4cf9f5b3fe7546aa3c738c7 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
trackers - the TEMPLATE-INFO.txt name entry has the tracker's dir name
appended (so the demo tracker's template name is "classic-demo")
- handle bad multilink input at item creation time better (sf bug 917834)
+- make sure email signature starts on a newline (sf bug 919759)
2004-03-01 0.6.7
diff --git a/roundup/roundupdb.py b/roundup/roundupdb.py
index 46f383d1d386178108b65244fc613d0d127e9ef6..00838061f54211cf90d8c8a51865dad1405f521f 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.102 2004-03-19 04:47:59 richard Exp $
+# $Id: roundupdb.py,v 1.103 2004-03-22 00:15:34 richard Exp $
"""Extending hyperdb with types specific to issue-tracking.
"""
self.db.config.TRACKER_EMAIL))
line = '_' * max(len(web)+2, len(email))
- return '%s\n%s\n<%s>\n%s'%(line, email, web, line)
+ return '\n%s\n%s\n<%s>\n%s'%(line, email, web, line)
def generateCreateNote(self, nodeid):