mirror of https://gitlab.com/bashrc2/epicyon
String cast
parent
b634f11f50
commit
fcd5307079
|
@ -973,10 +973,10 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
'text-align: center;">' + str(http_code) + '</div>' + \
|
'text-align: center;">' + str(http_code) + '</div>' + \
|
||||||
'<div style="font-size: 128px; ' + \
|
'<div style="font-size: 128px; ' + \
|
||||||
'text-align: center; font-variant: ' + \
|
'text-align: center; font-variant: ' + \
|
||||||
'small-caps;"><p role="alert">' + http_description + \
|
'small-caps;"><p role="alert">' + str(http_description) + \
|
||||||
'</p></div>' + \
|
'</p></div>' + \
|
||||||
'<div style="text-align: center;" aria-live="polite">' + \
|
'<div style="text-align: center;" aria-live="polite">' + \
|
||||||
long_description + '</div></body></html>'
|
str(long_description) + '</div></body></html>'
|
||||||
msg = msg.encode('utf-8')
|
msg = msg.encode('utf-8')
|
||||||
self.send_response(http_code)
|
self.send_response(http_code)
|
||||||
self.send_header('Content-Type', 'text/html; charset=utf-8')
|
self.send_header('Content-Type', 'text/html; charset=utf-8')
|
||||||
|
|
Loading…
Reference in New Issue