aboutsummaryrefslogtreecommitdiffstats
path: root/python/dotsandboxes/dotsandboxesserver.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--python/dotsandboxes/dotsandboxesserver.py (renamed from dotsandboxes/server.py)2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotsandboxes/server.py b/python/dotsandboxes/dotsandboxesserver.py
index 914ab45..1b66372 100644
--- a/dotsandboxes/server.py
+++ b/python/dotsandboxes/dotsandboxesserver.py
@@ -23,7 +23,7 @@ class RequestHandler(http.server.SimpleHTTPRequestHandler):
def do_GET(self):
if self.path == "/":
self.send_response(302)
- self.send_header("Location", "web/dotsandboxes.html")
+ self.send_header("Location", "static/dotsandboxes.html")
self.end_headers()
return super().do_GET()