less debug output from installer
This commit is contained in:
parent
c713c80c18
commit
0f0e880e41
1 changed files with 4 additions and 0 deletions
|
@ -38,6 +38,10 @@ def get_platform():
|
|||
return name
|
||||
|
||||
class Handler(http.server.SimpleHTTPRequestHandler):
|
||||
|
||||
def log_message(self, format, *args):
|
||||
pass
|
||||
|
||||
def do_OPTIONS(self):
|
||||
self.send_response(200, 'OK')
|
||||
self.send_header('Allow', 'GET, POST, OPTIONS')
|
||||
|
|
Loading…
Reference in a new issue