Use print function after future import

This commit is contained in:
Aldo Cortesi 2014-09-07 11:24:41 +12:00
parent 6d1b601ddf
commit 3b81d678c4

View File

@ -486,10 +486,13 @@ class TCPServer(object):
# none.
if traceback:
exc = traceback.format_exc()
print >> fp, '-'*40
print >> fp, "Error in processing of request from %s:%s" % (client_address.host, client_address.port)
print >> fp, exc
print >> fp, '-'*40
print('-'*40, file=fp)
print(
"Error in processing of request from %s:%s" % (
client_address.host, client_address.port
), file=fp)
print(exc, file=fp)
print('-'*40, file=fp)
def handle_client_connection(self, conn, client_address): # pragma: no cover
"""