Change default port not to conflict with random testing

This commit is contained in:
Juhani Krekelä 2018-04-07 20:04:04 +03:00
parent 134ad546a2
commit 16dcb4562c
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class HTTPRequestHandler(http.server.BaseHTTPRequestHandler):
self.__send_404(path)
def main():
httpd = http.server.HTTPServer(('', 8000), HTTPRequestHandler)
httpd = http.server.HTTPServer(('', 4000), HTTPRequestHandler)
httpd.serve_forever()
if __name__ == '__main__':