cq: Format strings

This commit is contained in:
Philipp Hörist
2025-01-25 20:56:23 +01:00
parent 223328587f
commit 7b8fa3c432
7 changed files with 16 additions and 18 deletions

View File

@@ -134,13 +134,13 @@ class PGPLegacy(BaseModule):
fingerprint = self._pgp.verify(properties.status, properties.signed)
if fingerprint is None:
self._log.info(
"Presence from %s was signed but no corresponding " "key was found", jid
"Presence from %s was signed but no corresponding key was found", jid
)
return
self._presence_fingerprint_store[jid] = fingerprint
self._log.info(
"Presence from %s was verified successfully, " "fingerprint: %s",
"Presence from %s was verified successfully, fingerprint: %s",
jid,
fingerprint,
)