diff --git a/src/webapp.py b/src/webapp.py index f915eec..ba3df08 100644 --- a/src/webapp.py +++ b/src/webapp.py @@ -508,5 +508,5 @@ class ScriptFormWebApp(RequestHandler): self.send_response(200) self.end_headers() - with open(path, "r") as static_file: + with open(path, "rb") as static_file: self.wfile.write(static_file.read())