Error message in http.server code. Missed to update in 3.1 branch initially.
This commit is contained in:
parent
de91276a5c
commit
9f9193ec37
|
@ -103,15 +103,20 @@ import copy
|
||||||
|
|
||||||
# Default error message template
|
# Default error message template
|
||||||
DEFAULT_ERROR_MESSAGE = """\
|
DEFAULT_ERROR_MESSAGE = """\
|
||||||
<head>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||||
<title>Error response</title>
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
</head>
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<body>
|
<head>
|
||||||
<h1>Error response</h1>
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||||
<p>Error code %(code)d.
|
<title>Error response</title>
|
||||||
<p>Message: %(message)s.
|
</head>
|
||||||
<p>Error code explanation: %(code)s = %(explain)s.
|
<body>
|
||||||
</body>
|
<h1>Error response</h1>
|
||||||
|
<p>Error code: %(code)d</p>
|
||||||
|
<p>Message: %(message)s.</p>
|
||||||
|
<p>Error code explanation: %(code)s - %(explain)s.</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
"""
|
"""
|
||||||
|
|
||||||
DEFAULT_ERROR_CONTENT_TYPE = "text/html;charset=utf-8"
|
DEFAULT_ERROR_CONTENT_TYPE = "text/html;charset=utf-8"
|
||||||
|
|
Loading…
Reference in New Issue