Skip to content

Commit 31d1571

Browse files
author
Richard Jones
committed
oops
1 parent 99c9b89 commit 31d1571

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

roundup/roundupdb.py

Lines changed: 7 additions & 4 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.22 2001-11-27 03:00:50 richard Exp $
18+
# $Id: roundupdb.py,v 1.23 2001-11-27 03:17:13 richard Exp $
1919

2020
__doc__ = """
2121
Extending hyperdb with types specific to issue-tracking.
@@ -323,7 +323,7 @@ def sendmessage(self, nodeid, msgid):
323323
authname = self.db.user.get(authid, 'username')
324324
authaddr = self.db.user.get(authid, 'address')
325325
if authaddr:
326-
authaddr = '<%s> '%authaddr
326+
authaddr = ' <%s>'%authaddr
327327
else:
328328
authaddr = ''
329329
# make the message body
@@ -335,9 +335,9 @@ def sendmessage(self, nodeid, msgid):
335335

336336
# add author information
337337
if len(self.db.issue.get(nodeid, 'messages')) == 1:
338-
m.append("New submission from %s <%s>:"%(authname, authaddr))
338+
m.append("New submission from %s%s:"%(authname, authaddr))
339339
else:
340-
m.append("%s <%s> added the comment:"%(authname, authaddr))
340+
m.append("%s%s added the comment:"%(authname, authaddr))
341341
m.append('')
342342

343343
# add the content
@@ -416,6 +416,9 @@ def email_signature(self, nodeid, msgid):
416416

417417
#
418418
# $Log: not supported by cvs2svn $
419+
# Revision 1.22 2001/11/27 03:00:50 richard
420+
# couple of bugfixes from latest patch integration
421+
#
419422
# Revision 1.21 2001/11/26 22:55:56 richard
420423
# Feature:
421424
# . Added INSTANCE_NAME to configuration - used in web and email to identify

0 commit comments

Comments
 (0)