mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Fix: Filter empty entries from journal protocol
This commit is contained in:
parent
e8e709191a
commit
e23f0283b0
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ class ThreadedStreamHandler(logging.Handler):
|
|||
def _encode_journal(data):
|
||||
msg = b""
|
||||
for key, value in data.items():
|
||||
if key is None:
|
||||
if value is None:
|
||||
continue
|
||||
key = key.encode()
|
||||
value = str(value).encode()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue