Compare commits

..

1 Commits

Author SHA1 Message Date
ed
a00ff2b086 v1.7.4 2023-06-11 00:07:38 +00:00
2 changed files with 7 additions and 1 deletions

View File

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

View File

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