This commit is contained in:
ed 2023-06-11 00:07:38 +00:00
parent e4acddc23b
commit a00ff2b086
2 changed files with 7 additions and 1 deletions

View file

@ -1,6 +1,6 @@
# coding: utf-8
VERSION = (1, 7, 3)
VERSION = (1, 7, 4)
CODENAME = "unlinked"
BUILD_DT = (2023, 6, 11)

View file

@ -8,6 +8,12 @@ import socket
import threading # typechk
import time
try:
HAVE_SSL = True
import ssl
except:
HAVE_SSL = False
from . import util as Util
from .__init__ import TYPE_CHECKING, EnvParams
from .authsrv import AuthSrv # typechk