formatdate(), msg)
smtp.sendmail(self.fromaddr, self.toaddrs, msg)
smtp.quit()
+ except (KeyboardInterrupt, SystemExit):
+ raise
except:
self.handleError(record)
type = self.getEventType(record)
msg = self.format(record)
self._welu.ReportEvent(self.appname, id, cat, type, [msg])
+ except (KeyboardInterrupt, SystemExit):
+ raise
except:
self.handleError(record)
if self.method == "POST":
h.send(data)
h.getreply() #can't do anything with the result
+ except (KeyboardInterrupt, SystemExit):
+ raise
except:
self.handleError(record)