From ecf7653bf984911592e1fe0513ef2b6a2399b7a2 Mon Sep 17 00:00:00 2001 From: Martin Mahner Date: Thu, 21 Mar 2013 19:25:28 +0100 Subject: [PATCH] Added a smtp comment --- dpaste/smtp.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dpaste/smtp.py b/dpaste/smtp.py index f773df6..2dbfcea 100644 --- a/dpaste/smtp.py +++ b/dpaste/smtp.py @@ -7,6 +7,10 @@ from subprocess import Popen, PIPE class EmailBackend(BaseEmailBackend): + """ + EmailBackend that uses a local 'sendmail' binary instead of a local + SMTP daemon. + """ def __init__(self, fail_silently=False, **kwargs): super(EmailBackend, self).__init__(fail_silently=fail_silently) self._lock = threading.RLock()