diff options
author | Matt Strapp <strap012@umn.edu> | 2021-04-26 18:26:09 -0500 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2021-04-26 18:26:09 -0500 |
commit | eae4bb3d3ce9d3401685eeba61ff47343d1d33cf (patch) | |
tree | 18f016c778a86d715e1988e0fa6530780a5df7f1 /python/dotsandboxes/dotsandboxesserver.py | |
parent | Delete useless AB code (diff) | |
download | csci4511w-eae4bb3d3ce9d3401685eeba61ff47343d1d33cf.tar csci4511w-eae4bb3d3ce9d3401685eeba61ff47343d1d33cf.tar.gz csci4511w-eae4bb3d3ce9d3401685eeba61ff47343d1d33cf.tar.bz2 csci4511w-eae4bb3d3ce9d3401685eeba61ff47343d1d33cf.tar.lz csci4511w-eae4bb3d3ce9d3401685eeba61ff47343d1d33cf.tar.xz csci4511w-eae4bb3d3ce9d3401685eeba61ff47343d1d33cf.tar.zst csci4511w-eae4bb3d3ce9d3401685eeba61ff47343d1d33cf.zip |
refactor things
Diffstat (limited to 'python/dotsandboxes/dotsandboxesserver.py')
-rw-r--r-- | python/dotsandboxes/dotsandboxesserver.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/dotsandboxes/dotsandboxesserver.py b/python/dotsandboxes/dotsandboxesserver.py index 1b66372..0a1ed87 100644 --- a/python/dotsandboxes/dotsandboxesserver.py +++ b/python/dotsandboxes/dotsandboxesserver.py @@ -23,7 +23,8 @@ class RequestHandler(http.server.SimpleHTTPRequestHandler): def do_GET(self): if self.path == "/": self.send_response(302) - self.send_header("Location", "static/dotsandboxes.html") + self.send_header( + "Location", "python/dotsandboxes/static/dotsandboxes.html") self.end_headers() return super().do_GET() |