Message322494
| Author | pablogsal |
|---|---|
| Recipients | pablogsal, r.david.murray |
| Date | 2018-07-27.14:12:47 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1532700767.93.0.56676864532.issue34246@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
The TypeError is because the test is misusing the assertRaises API:
self.assertRaises(smtplib.SMTPNotSupportedError,
smtp.send_message(msg))
should be
self.assertRaises(smtplib.SMTPNotSupportedError,
smtp.send_message, msg) |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2018-07-27 14:12:47 | pablogsal | set | recipients: + pablogsal, r.david.murray |
| 2018-07-27 14:12:47 | pablogsal | set | messageid: <1532700767.93.0.56676864532.issue34246@psf.upfronthosting.co.za> |
| 2018-07-27 14:12:47 | pablogsal | link | issue34246 messages |
| 2018-07-27 14:12:47 | pablogsal | create | |