Mercurial > p > roundup > code
diff roundup/mailgw.py @ 1204:b862bbf2067a
Replaced the content() callback ickiness with Page Template macro usage
changed the default CSS style to be less offensive to some ;)
better handling of Page Template compilation errors
removed dependency on ComputedAttribute
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 25 Sep 2002 02:10:25 +0000 |
| parents | ba133c895f2d |
| children | e47d9bb1455b |
line wrap: on
line diff
--- a/roundup/mailgw.py Tue Sep 24 07:39:52 2002 +0000 +++ b/roundup/mailgw.py Wed Sep 25 02:10:25 2002 +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.88 2002-09-20 23:20:57 richard Exp $ +$Id: mailgw.py,v 1.89 2002-09-25 02:10:24 richard Exp $ ''' import string, re, os, mimetools, cStringIO, smtplib, socket, binascii, quopri @@ -500,6 +500,7 @@ # reopen the database as the author username = self.db.user.get(author, 'username') + self.db.close() self.db = self.instance.open(username) # re-get the class with the new database connection
