From ee369ceb0cc41b9b30a577a87375e73669b399ae Mon Sep 17 00:00:00 2001 From: Aditya Bansal Date: Thu, 1 Jun 2017 01:49:16 +0530 Subject: [PATCH] pep8: Add compliance with rule E261 scripts/lib/email-mirror-postfix. --- scripts/lib/email-mirror-postfix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/email-mirror-postfix b/scripts/lib/email-mirror-postfix index b54ab61233..cb97db41f0 100755 --- a/scripts/lib/email-mirror-postfix +++ b/scripts/lib/email-mirror-postfix @@ -89,7 +89,7 @@ def send_email_mirror(rcpt_to, shared_secret, host, url, test, verify_ssl): # type: (Text, Text, Text, Text, bool, bool) -> None if not rcpt_to: print("5.1.1 Bad destination mailbox address: No missed message email address.") - exit(posix.EX_NOUSER) # type: ignore # There are no stubs for posix in python 3 + exit(posix.EX_NOUSER) # type: ignore # There are no stubs for posix in python 3 msg_text = sys.stdin.read(MAX_ALLOWED_PAYLOAD + 1) if len(msg_text) > MAX_ALLOWED_PAYLOAD: # We're not at EOF, reject large mail.