diff --git a/daemon.py b/daemon.py index d530517bc..27268898e 100644 --- a/daemon.py +++ b/daemon.py @@ -967,13 +967,14 @@ class PubServer(BaseHTTPRequestHandler): def _http_return_code(self, http_code: int, http_description: str, long_description: str, etag: str) -> None: msg = \ - '' + str(http_code) + '' \ - '' \ - '
' + str(http_code) + '
' \ - '

' + http_description + '

' \ + '' + str(http_code) + '' + \ + '' + \ + '
' + str(http_code) + '
' + \ + '

' + http_description + \ + '

' + \ '
' + \ long_description + '
' msg = msg.encode('utf-8')