Mercurial > p > roundup > code
diff roundup/mailgw.py @ 244:6bf584784e31
Fixed missing import in mailgw :(
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 30 Aug 2001 06:01:17 +0000 |
| parents | 8af4945246cb |
| children | a671e5917b33 |
line wrap: on
line diff
--- a/roundup/mailgw.py Wed Aug 29 06:23:59 2001 +0000 +++ b/roundup/mailgw.py Thu Aug 30 06:01:17 2001 +0000 @@ -72,13 +72,13 @@ an exception, the original message is bounced back to the sender with the explanatory message given in the exception. -$Id: mailgw.py,v 1.14 2001-08-13 23:02:54 richard Exp $ +$Id: mailgw.py,v 1.15 2001-08-30 06:01:17 richard Exp $ ''' import string, re, os, mimetools, cStringIO, smtplib, socket, binascii, quopri import traceback -import date +import hyperdb, date class MailUsageError(ValueError): pass @@ -398,6 +398,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.14 2001/08/13 23:02:54 richard +# Make the mail parser a little more robust. +# # Revision 1.13 2001/08/12 06:32:36 richard # using isinstance(blah, Foo) now instead of isFooType #
