Skip to content

Commit c4e1ad3

Browse files
author
Richard Jones
committed
merge from HEAD
1 parent dcbfa52 commit c4e1ad3

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4+
2004-??-?? 0.6.5
5+
Fixed:
6+
- mailgw handling of subject-line errors
7+
8+
49
2003-12-17 0.6.4
510
Fixed:
611
- fixed date arithmetic to not allow day-of-month == 0 (sf bug 853306)

roundup/mailgw.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ class node. Any parts of other types are each stored in separate files
7373
an exception, the original message is bounced back to the sender with the
7474
explanatory message given in the exception.
7575
76-
$Id: mailgw.py,v 1.126 2003-06-25 08:02:51 neaj Exp $
77-
'''
76+
$Id: mailgw.py,v 1.126.2.1 2003-12-19 01:51:56 richard Exp $
77+
"""
7878
7979
import string, re, os, mimetools, cStringIO, smtplib, socket, binascii, quopri
8080
import time, random, sys
@@ -711,7 +711,7 @@ def handle_message(self, message):
711711
errors, props = setPropArrayFromString(self, cl, args, nodeid)
712712
# handle any errors parsing the argument list
713713
if errors:
714-
errors = '\n- '.join(errors)
714+
errors = '\n- '.join(map(str, errors))
715715
raise MailUsageError, '''
716716
There were problems handling your subject line argument list:
717717
- %s

0 commit comments

Comments
 (0)