diff options
author | David Baker <dave@matrix.org> | 2016-04-20 13:02:45 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-04-20 13:02:45 +0100 |
commit | 05adc6c2de7def8058d97e9644dddca639886322 (patch) | |
tree | 43d517b913e81b593b788085953493874c537137 | |
parent | Send a rather basic email notif (diff) | |
download | synapse-05adc6c2de7def8058d97e9644dddca639886322.tar.xz |
more pep8
-rw-r--r-- | synapse/push/mailer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/mailer.py b/synapse/push/mailer.py index 93d3866ec7..97cba2ec2b 100644 --- a/synapse/push/mailer.py +++ b/synapse/push/mailer.py @@ -45,4 +45,4 @@ class Mailer(object): smtp = smtplib.SMTP(self.smtp_host, self.smtp_port) smtp.sendmail(raw_from, raw_to, text_part.as_string()) - smtp.quit() \ No newline at end of file + smtp.quit() |