Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

Commit

Permalink
Removed print
Browse files Browse the repository at this point in the history
  • Loading branch information
pfreixes authored and popravich committed Jun 21, 2017
1 parent f77a06b commit e38be72
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion aioredis/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ def create_connection(address, *, db=None, password=None, ssl=None,
if isinstance(address, (list, tuple)):
host, port = address
logger.debug("Creating tcp connection to %r", address)
print(asyncio.open_connection)
reader, writer = yield from asyncio.wait_for(asyncio.open_connection(
host, port, ssl=ssl, loop=loop), timeout, loop=loop)
sock = writer.transport.get_extra_info('socket')
Expand Down

0 comments on commit e38be72

Please sign in to comment.