mirror of
https://github.com/Py-KMS-Organization/py-kms.git
synced 2025-05-13 06:34:45 -04:00
Merge pull request #42 from Py-KMS-Organization/next
Silenced deprecated warning in Python 3.10
This commit is contained in:
commit
98008d646f
2 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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__":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue