mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Enhance readability
This commit is contained in:
parent
58c6fe399c
commit
77ab37c49c
1 changed files with 6 additions and 6 deletions
|
@ -186,13 +186,13 @@ class Application(object):
|
|||
|
||||
# Set content length
|
||||
if answer:
|
||||
# Decode the answer for logging purposes on Python 3
|
||||
if isinstance(answer, str):
|
||||
log_answer = answer
|
||||
if not isinstance(log_answer, str):
|
||||
log_answer = log_answer.decode(
|
||||
config.get("encoding", "request"))
|
||||
else:
|
||||
# Decode the answer for logging purposes on Python 3
|
||||
log_answer = answer.decode(config.get("encoding", "request"))
|
||||
log.LOGGER.debug("Response content:\n%s" % log_answer)
|
||||
headers["Content-Length"] = "%i" % len(answer)
|
||||
headers["Content-Length"] = str(len(answer))
|
||||
|
||||
# Start response
|
||||
status = "%i %s" % (status, client.responses.get(status, ""))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue