Daniel Brötzmann pushed to branch master at gajim / gajim


Commits:
e4e96436 by nicoco at 2024-04-28T18:34:38+02:00
cfix: Fix log format string

Fixes a "TypeError: not all arguments converted during string 
formatting"

- - - - -


1 changed file:

- gajim/common/modules/message.py


Changes:

=====================================
gajim/common/modules/message.py
=====================================
@@ -344,8 +344,8 @@ def _message_error_received(self,
         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(



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/e4e96436734d7eacc33759144ea7b6719369c9a4

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/e4e96436734d7eacc33759144ea7b6719369c9a4
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to