mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-30 08:31:28 -07:00
Fix the uri testserver to run on python3
This commit is contained in:
parent
6885797b03
commit
589e71dbc5
1 changed files with 15 additions and 5 deletions
|
@ -1,7 +1,17 @@
|
||||||
import mimetypes
|
import sys
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
mimetypes.init()
|
if sys.version_info[0] >= 3:
|
||||||
mimetypes.add_type('application/json', '.json')
|
import http.server
|
||||||
import SimpleHTTPServer
|
import socketserver
|
||||||
SimpleHTTPServer.test()
|
PORT = int(sys.argv[1])
|
||||||
|
Handler = http.server.SimpleHTTPRequestHandler
|
||||||
|
httpd = socketserver.TCPServer(("", PORT), Handler)
|
||||||
|
httpd.serve_forever()
|
||||||
|
else:
|
||||||
|
import mimetypes
|
||||||
|
mimetypes.init()
|
||||||
|
mimetypes.add_type('application/json', '.json')
|
||||||
|
import SimpleHTTPServer
|
||||||
|
SimpleHTTPServer.test()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue