commit 75870e70da6ae81f26581e2ba70ac2924c03cb3e Author: Isis Lovecruft isis@torproject.org Date: Mon Apr 7 02:55:02 2014 +0000
PEP8 add newline after class docstring in EmailServer. --- lib/bridgedb/EmailServer.py | 1 + 1 file changed, 1 insertion(+)
diff --git a/lib/bridgedb/EmailServer.py b/lib/bridgedb/EmailServer.py index dd0ca49..2d2158d 100644 --- a/lib/bridgedb/EmailServer.py +++ b/lib/bridgedb/EmailServer.py @@ -402,6 +402,7 @@ class MailDelivery(object): class MailFactory(smtp.SMTPFactory): """Plugs into Twisted Mail; creates a new MailDelivery whenever we get a connection on the SMTP port.""" + def __init__(self, *a, **kw): smtp.SMTPFactory.__init__(self, *a, **kw) self.delivery = MailDelivery()
tor-commits@lists.torproject.org