Mercurial > p > roundup > code
diff roundup/mailgw.py @ 1462:285934a04a6c
fix for [SF#691046]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sat, 22 Feb 2003 06:47:04 +0000 |
| parents | 8dc60d87ab42 |
| children | ed725179953d |
line wrap: on
line diff
--- a/roundup/mailgw.py Thu Feb 20 22:59:01 2003 +0000 +++ b/roundup/mailgw.py Sat Feb 22 06:47:04 2003 +0000 @@ -73,7 +73,7 @@ an exception, the original message is bounced back to the sender with the explanatory message given in the exception. -$Id: mailgw.py,v 1.109 2003-02-06 05:43:47 richard Exp $ +$Id: mailgw.py,v 1.110 2003-02-22 06:47:04 richard Exp $ ''' import string, re, os, mimetools, cStringIO, smtplib, socket, binascii, quopri @@ -168,7 +168,7 @@ def __init__(self, instance, db, arguments={}): self.instance = instance self.db = db - self.arguments = {} + self.arguments = arguments # should we trap exceptions (normal usage) or pass them through # (for testing)
