echo_bot: re-add space before echoing unencrypted message

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2022-03-12 01:38:56 +01:00
parent b586b62558
commit 9a5cc71b14
Signed by: pep
GPG key ID: DEDA74AEECA9D0F2

View file

@ -136,7 +136,7 @@ class EchoBot(ClientXMPP):
if not self['xep_0384'].is_encrypted(msg): if not self['xep_0384'].is_encrypted(msg):
if self.debug_level == LEVEL_DEBUG: if self.debug_level == LEVEL_DEBUG:
await self.plain_reply(mto, mtype, f"Echo unencrypted message:{msg['body']}") await self.plain_reply(mto, mtype, f"Echo unencrypted message: {msg['body']}")
return None return None
try: try: