Rename Server- and ClientMessage

Renamed ServerMessage and ClientMessage to respectively ResponseMessage
and RequestMessage to make it more clear.
This commit is contained in:
2021-03-28 01:59:08 +01:00
parent 1f0ade0f09
commit 48c4f207a8
5 changed files with 6 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ from wsgiref.handlers import format_date_time
from httplib import parser
from httplib.exceptions import NotFound, Forbidden, NotModified
from httplib.httpsocket import FORMAT
from httplib.message import ServerMessage as Message
from httplib.message import RequestMessage as Message
CONTENT_ROOT = os.path.join(os.path.dirname(sys.argv[0]), "public")