Merge pull request #771 from ProkopRandacek/master

Add missing f in front of the f-string
This commit is contained in:
Sumner Evans
2022-03-21 10:51:51 -06:00
committed by GitHub
+1 -1
View File
@@ -81,5 +81,5 @@ async def enter_matrix_token(evt: CommandEvent) -> EventID:
except InvalidAccessToken:
return await evt.reply("Failed to verify access token.")
return await evt.reply(
"Replaced your Telegram account's Matrix puppet with {puppet.custom_mxid}."
f"Replaced your Telegram account's Matrix puppet with {puppet.custom_mxid}."
)