aboutsummaryrefslogtreecommitdiff
path: root/pyblog
diff options
context:
space:
mode:
Diffstat (limited to 'pyblog')
-rwxr-xr-xpyblog2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyblog b/pyblog
index 461a9934..4acaa6b9 100755
--- a/pyblog
+++ b/pyblog
@@ -1420,7 +1420,7 @@ class HTTPServerProcess(multiprocessing.Process):
# pylint: disable=invalid-name
HandlerClass = http.server.SimpleHTTPRequestHandler
try:
- httpd = http.server.HTTPServer(("", 8000), HandlerClass)
+ httpd = http.server.HTTPServer(("", 8001), HandlerClass)
except OSError:
httpd = http.server.HTTPServer(("", 0), HandlerClass)
_, portnumber = httpd.socket.getsockname()