From bf68b6cb75ff2562c3b9126c491c695feb49d5ea Mon Sep 17 00:00:00 2001 From: jesopo Date: Sun, 19 Apr 2020 00:55:32 +0100 Subject: [PATCH] ah oops, the bindhost port was a test value that got committed --- ircrobots/transport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircrobots/transport.py b/ircrobots/transport.py index ff51e15..107cc72 100644 --- a/ircrobots/transport.py +++ b/ircrobots/transport.py @@ -37,7 +37,7 @@ class TCPTransport(ITCPTransport): local_addr: Optional[Tuple[str, int]] = None if not bindhost is None: - local_addr = (bindhost, 53567) + local_addr = (bindhost, 0) reader, writer = await open_connection( hostname,