diff --git a/README.md b/README.md index c3c0889..756e80d 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ This version of _py-kms_ is for itself a fork of the original implementation by - Microsoft Office 2016 ( Volume License ) - Microsoft Office 2019 ( Volume License ) - Microsoft Office 2021 ( Volume License ) - - It's written in Python (tested with Python 3.6.9). + - It's written in Python (tested with Python 3.10.1). - Supports execution by `Docker`, `systemd`, `Upstart` and many more... - Includes a GUI for simple managing. - Uses `sqlite` for persistent data storage. diff --git a/py-kms/pykms_Server.py b/py-kms/pykms_Server.py index cb131ee..20066af 100755 --- a/py-kms/pykms_Server.py +++ b/py-kms/pykms_Server.py @@ -629,7 +629,7 @@ class kmsServerHandler(socketserver.BaseRequestHandler): serverqueue = Queue.Queue(maxsize = 0) serverthread = server_thread(serverqueue, name = "Thread-Srv") -serverthread.setDaemon(True) +serverthread.daemon = True serverthread.start() if __name__ == "__main__":