webserver: Results look better without the border.

This commit is contained in:
Andrew Hamilton 2021-11-16 23:30:57 +10:00
parent 64b3221daa
commit b3ac69e0aa

View file

@ -40,8 +40,7 @@ class Webserver(http.server.BaseHTTPRequestHandler):
elif "/" in self.path[1:]:
path, tool = os.path.split(self.path[1:])
result = index[(path, tool)]
body = fill3.appearance_as_html(
fill3.Border(result).appearance_min())
body = fill3.appearance_as_html(result.appearance_min())
page = make_page(body, f"{tool} of {path}")
else:
return