Christopher Arndt schrieb: > For now, I have attached and linked an example project to the page, > which showcases an enhanced version of the ErrorCatcher controller and > contains some example error page templates. > > Check it out! > > I will build a proper extension package later if time permits.
Thanks a lot. Found two small issues when testing: from email.MIMEMultipart import MIMEMultipart --> from email.mime.multipart import MIMEMultipart from email.MIMEText import MIMEText --> from email.mime.text import MIMEText And if TurboMail is installed, but mail.on is not set, then send_exception_email() will crash, because the globals from the email package have note been imported. -- Christoph --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

