diff options
Diffstat (limited to 'client.py')
-rw-r--r-- | client.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/client.py b/client.py index d1e7474..c70317c 100644 --- a/client.py +++ b/client.py @@ -1,12 +1,10 @@ # Part of rabbitears See LICENSE for permissions # Copyright (C) 2022 Matt Arnold from IRC import IRCBot, IRCError, printred -import os import random import ssl import socket import sys -import irctokens import json import re @@ -22,7 +20,7 @@ with open("config.json") as f: # Need to pass the IRCBot class a socket the reason it doesn't do this itself is # so you can set up TLS or not as you need it -# These provide good defaults. But your milage may vary +# These provide good defaults. But your mileage may vary oursock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) context = ssl.SSLContext() context.check_hostname = False |