Merge pull request #42 from Py-KMS-Organization/next

Silenced deprecated warning in Python 3.10
This commit is contained in:
simonmicro 2021-12-09 18:13:40 +01:00 committed by GitHub
commit 98008d646f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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.

View file

@ -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__":