From 1e5cb29fc97b37af337595ae307133cda8da34f5 Mon Sep 17 00:00:00 2001 From: OzzieIsaacs Date: Wed, 8 Aug 2018 06:54:38 +0200 Subject: [PATCH] #571 (temporary fix) --- cps/asyncmail.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cps/asyncmail.py b/cps/asyncmail.py index a3161c62..620e0a06 100644 --- a/cps/asyncmail.py +++ b/cps/asyncmail.py @@ -44,8 +44,9 @@ class email(smtplib.SMTP): def send(self, str): """Send `str' to the server.""" if self.debuglevel > 0: - from __future__ import print_function - print('send:', repr(str), file=sys.stderr) + # from __future__ import print_function + # print('send:', repr(str), file=sys.stderr) + pass if hasattr(self, 'sock') and self.sock: try: if self.transferSize: