Commit fdabb804 authored by Unknown's avatar Unknown

Call print as a function
parent 3db682cd
......@@ -44,7 +44,8 @@ class email(smtplib.SMTP):
def send(self, str):
"""Send `str' to the server."""
if self.debuglevel > 0:
print>> sys.stderr, 'send:', repr(str)
from __future__ import print_function
print('send:', repr(str), file=sys.stderr)
if hasattr(self, 'sock') and self.sock:
try:
if self.transferSize:
......@@ -235,7 +236,7 @@ class StderrLogger(object):
def write(self, message):
if message == '\n':
self.logger.debug(self.buffer)
print self.buffer
print(self.buffer)
self.buffer = ''
else:
self.buffer += message
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment