Allow for blanks in <META> portion of response.

Credit: Simon Forman

d610a304e0
This commit is contained in:
nervuri 2022-02-09 17:42:48 +00:00
parent 7f8c83c897
commit 1c8e8b661a
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ while True:
fp = s.makefile("rb")
header = fp.readline()
header = header.decode("UTF-8").strip()
status, mime = header.split()
status, mime = header.split(maxsplit=1)
# Handle input requests
if status.startswith("1"):
# Prompt