Skip to content
Snippets Groups Projects
Commit e4e96436 authored by Nicoco's avatar Nicoco
Browse files

cfix: Fix log format string

Fixes a "TypeError: not all arguments converted during string formatting"
parent e7580b0d
No related branches found
No related tags found
No related merge requests found
......@@ -344,8 +344,8 @@ class Message(BaseModule):
pk = app.storage.archive.insert_row(
error_data, ignore_on_conflict=True)
if pk == -1:
self._log.warning('Received error with already known message id',
message_id)
self._log.warning(
'Received error with already known message id: %s', message_id)
return
app.ged.raise_event(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment